summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2009-10-10 21:28:29 +0000
committerAntoine Pitrou <solipsis@pitrou.net>2009-10-10 21:28:29 +0000
commita84dc764ca310905f45086aff5c2f057d3be976f (patch)
tree0332b919f3e675e90aa209116dab5335d571a3c1
parentc730e42432e041a4c0667ef02e672fad9c83a646 (diff)
downloadcpython-a84dc764ca310905f45086aff5c2f057d3be976f.tar.gz
Redundancy isn't needed here.
Redundancy isn't needed here.
-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 c224847597..add6626ad6 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