summaryrefslogtreecommitdiffstats
path: root/Lib/dbm
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2009-10-10 21:08:31 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2009-10-10 21:08:31 (GMT)
commit4de39cda18c1a0a0c5ca4ae31b272374f48d7480 (patch)
tree4d48ea9deebe82276e76c89de49bac4630cb7022 /Lib/dbm
parent5de65b43fa4439730d4637460cc6d435d8433cf0 (diff)
downloadcpython-4de39cda18c1a0a0c5ca4ae31b272374f48d7480.zip
cpython-4de39cda18c1a0a0c5ca4ae31b272374f48d7480.tar.gz
cpython-4de39cda18c1a0a0c5ca4ae31b272374f48d7480.tar.bz2
Merged revisions 75312 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r75312 | antoine.pitrou | 2009-10-10 22:52:11 +0200 (sam., 10 oct. 2009) | 4 lines Issue #7055: test___all__ now greedily detects all modules which have an __all__ attribute, rather than using a hardcoded and incomplete list. ........
Diffstat (limited to 'Lib/dbm')
-rw-r--r--Lib/dbm/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/dbm/__init__.py b/Lib/dbm/__init__.py
index 56555be..c224847 100644
--- a/Lib/dbm/__init__.py
+++ b/Lib/dbm/__init__.py
@@ -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', 'errors']
+__all__ = ['open', 'whichdb', 'error', 'error']
import io
import os