[Python-checkins] r75320 - python/branches/py3k/Lib/dbm/__init__.py

antoine.pitrou python-checkins at python.org
Sat Oct 10 23:28:29 CEST 2009


Author: antoine.pitrou
Date: Sat Oct 10 23:28:29 2009
New Revision: 75320

Log:
Redundancy isn't needed here.
Redundancy isn't needed here.



Modified:
   python/branches/py3k/Lib/dbm/__init__.py

Modified: python/branches/py3k/Lib/dbm/__init__.py
==============================================================================
--- python/branches/py3k/Lib/dbm/__init__.py	(original)
+++ python/branches/py3k/Lib/dbm/__init__.py	Sat Oct 10 23:28:29 2009
@@ -36,7 +36,7 @@
 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


More information about the Python-checkins mailing list