From: Guido van Rossum Date: Mon, 28 Aug 1995 02:58:31 +0000 (+0000) Subject: fix bug in close() X-Git-Tag: v1.3b1~7 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=e03f277a225022eb6906157f6b2bcfbcd9a3644d;p=thirdparty%2FPython%2Fcpython.git fix bug in close() --- diff --git a/Modules/dbmmodule.c b/Modules/dbmmodule.c index d0736f7ddb04..936fb45ab1dd 100644 --- a/Modules/dbmmodule.c +++ b/Modules/dbmmodule.c @@ -171,7 +171,6 @@ dbm__close(dp, args) if ( dp->di_dbm ) dbm_close(dp->di_dbm); dp->di_dbm = NULL; - DEL(dp); INCREF(None); return None; }