]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Redundancy isn't needed here.
authorAntoine Pitrou <solipsis@pitrou.net>
Sat, 10 Oct 2009 21:28:29 +0000 (21:28 +0000)
committerAntoine Pitrou <solipsis@pitrou.net>
Sat, 10 Oct 2009 21:28:29 +0000 (21:28 +0000)
Redundancy isn't needed here.

Lib/dbm/__init__.py

index c224847597f0f7b04a35500c30c4249bfa2b98cd..add6626ad675d6d12abdcc1d10045763d6d5a7b8 100644 (file)
@@ -36,7 +36,7 @@ Note: 'r' and 'w' fail if the database doesn't exist; 'c' creates it
 only if it doesn't exist; and 'n' always creates a new database.
 """
 
-__all__ = ['open', 'whichdb', 'error', 'error']
+__all__ = ['open', 'whichdb', 'error']
 
 import io
 import os