From f1a69c16665c6c031c4723e5bc3e6d6f4118fa5e Mon Sep 17 00:00:00 2001 From: Neal Norwitz Date: Sun, 20 Aug 2006 16:25:10 +0000 Subject: Get rid of a bunch more has_key() uses. We *really* need a tool for this. test_aepack now passes. IDLE still needs to be converted (among others). --- Lib/plat-mac/macresource.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Lib/plat-mac/macresource.py') diff --git a/Lib/plat-mac/macresource.py b/Lib/plat-mac/macresource.py index f68ecdc8a8..d5839a11df 100644 --- a/Lib/plat-mac/macresource.py +++ b/Lib/plat-mac/macresource.py @@ -48,7 +48,7 @@ def need(restype, resid, filename=None, modname=None): if modname == '__main__': # If we're main we look in the current directory searchdirs = [os.curdir] - if sys.modules.has_key(modname): + if modname in sys.modules: mod = sys.modules[modname] if hasattr(mod, '__file__'): searchdirs = [os.path.dirname(mod.__file__)] -- cgit v1.2.1