From: Guido van Rossum Date: Tue, 28 May 1996 22:58:40 +0000 (+0000) Subject: export error == IOError X-Git-Tag: v1.4b1~111 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=22a18904e43c47902ae1e58922abeb87b530b0ae;p=thirdparty%2FPython%2Fcpython.git export error == IOError --- diff --git a/Lib/dumbdbm.py b/Lib/dumbdbm.py index e35673387930..0ae1e82fad41 100644 --- a/Lib/dumbdbm.py +++ b/Lib/dumbdbm.py @@ -28,6 +28,8 @@ _open = __builtin__.open _BLOCKSIZE = 512 +error = IOError # For anydbm + class _Database: def __init__(self, file):