From ffceedf822fb0b64a79ede9661fee5ad4b719464 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Martin=20v=2E=20L=C3=B6wis?= Date: Thu, 3 Mar 2005 09:45:32 +0000 Subject: [PATCH] Patch #1112812: Make bsddb/__init__.py more friendly for modulefinder. --- Lib/bsddb/__init__.py | 4 ++-- Misc/NEWS | 2 ++ 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/Lib/bsddb/__init__.py b/Lib/bsddb/__init__.py index 3ee34416ddbe..0fc18928e1aa 100644 --- a/Lib/bsddb/__init__.py +++ b/Lib/bsddb/__init__.py @@ -65,9 +65,9 @@ import sys, os # iterator interface is dynamically defined and added using a mixin # class. old python can't tokenize it due to the yield keyword. if sys.version >= '2.3': + import UserDict + from weakref import ref exec """ -import UserDict -from weakref import ref class _iter_mixin(UserDict.DictMixin): def _make_iter_cursor(self): cur = self.db.cursor() diff --git a/Misc/NEWS b/Misc/NEWS index 79e4b71e21d4..c3ac9a87e495 100644 --- a/Misc/NEWS +++ b/Misc/NEWS @@ -37,6 +37,8 @@ Extension Modules Library ------- +- Patch #1112812: Make bsddb/__init__.py more friendly for modulefinder. + - Patch #1121234: Properly cleanup _exit and tkerror commands. - Applied a security fix to SimpleXMLRPCserver (PSF-2005-001). This -- 2.47.3