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: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=22a18904e43c47902ae1e58922abeb87b530b0ae;p=python export error == IOError --- diff --git a/Lib/dumbdbm.py b/Lib/dumbdbm.py index e356733879..0ae1e82fad 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):