From: Victor Stinner Date: Mon, 28 Nov 2011 23:03:50 +0000 (+0100) Subject: Fix curses module for strict SysV implementation (without has_key function) X-Git-Tag: v3.2.3rc1~346 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=b9bb1f4db36ce4867f2d76fe04344a6c1d059a90;p=thirdparty%2FPython%2Fcpython.git Fix curses module for strict SysV implementation (without has_key function) --- diff --git a/Lib/curses/__init__.py b/Lib/curses/__init__.py index 303ea3e79108..a3e9def72a27 100644 --- a/Lib/curses/__init__.py +++ b/Lib/curses/__init__.py @@ -54,4 +54,4 @@ def start_color(): try: has_key except NameError: - from has_key import has_key + from .has_key import has_key