From: Antoine Pitrou Date: Sat, 10 Oct 2009 21:28:29 +0000 (+0000) Subject: Redundancy isn't needed here. X-Git-Tag: v3.2a1~2421 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=a328029c9a027f85c3626c0f52b21b778f42f9fe;p=thirdparty%2FPython%2Fcpython.git Redundancy isn't needed here. Redundancy isn't needed here. --- diff --git a/Lib/dbm/__init__.py b/Lib/dbm/__init__.py index c224847597f0..add6626ad675 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