diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2009-10-10 21:28:29 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2009-10-10 21:28:29 (GMT) |
commit | a328029c9a027f85c3626c0f52b21b778f42f9fe (patch) | |
tree | 57cd434c8ed55c233c7b7627cced3f8a30abb152 /Lib/dbm | |
parent | 676161a850e05d209bca1af02e94417db07e4f87 (diff) | |
download | cpython-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__.py | 2 |
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 |