diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2009-10-10 21:28:29 +0000 |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2009-10-10 21:28:29 +0000 |
commit | a84dc764ca310905f45086aff5c2f057d3be976f (patch) | |
tree | 0332b919f3e675e90aa209116dab5335d571a3c1 /Lib/dbm | |
parent | c730e42432e041a4c0667ef02e672fad9c83a646 (diff) | |
download | cpython-a84dc764ca310905f45086aff5c2f057d3be976f.tar.gz |
Redundancy isn't needed here.
Redundancy isn't needed here.
Diffstat (limited to 'Lib/dbm')
-rw-r--r-- | Lib/dbm/__init__.py | 2 |
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 |