summaryrefslogtreecommitdiffstats
path: root/Lib/dbm
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2009-10-10 21:28:29 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2009-10-10 21:28:29 (GMT)
commita328029c9a027f85c3626c0f52b21b778f42f9fe (patch)
tree57cd434c8ed55c233c7b7627cced3f8a30abb152 /Lib/dbm
parent676161a850e05d209bca1af02e94417db07e4f87 (diff)
downloadcpython-a328029c9a027f85c3626c0f52b21b778f42f9fe.zip
cpython-a328029c9a027f85c3626c0f52b21b778f42f9fe.tar.gz
cpython-a328029c9a027f85c3626c0f52b21b778f42f9fe.tar.bz2
Redundancy isn't needed here.
Redundancy isn't needed here.
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 c224847..add6626 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', 'error']
+__all__ = ['open', 'whichdb', 'error']
import io
import os