diff options
author | Victor Stinner <victor.stinner@haypocalc.com> | 2011-11-28 23:06:10 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@haypocalc.com> | 2011-11-28 23:06:10 (GMT) |
commit | 5d7c9aba29ee73ce5708f97beb1371222cc5889e (patch) | |
tree | 46b0bcdf4db86bd4e3529604ffb0b5c637b0eac1 /Lib/curses | |
parent | 1439c77417c75737141ea3b1638a396175b6865c (diff) | |
parent | b9bb1f4db36ce4867f2d76fe04344a6c1d059a90 (diff) | |
download | cpython-5d7c9aba29ee73ce5708f97beb1371222cc5889e.zip cpython-5d7c9aba29ee73ce5708f97beb1371222cc5889e.tar.gz cpython-5d7c9aba29ee73ce5708f97beb1371222cc5889e.tar.bz2 |
(Merge 3.2) Fix curses module for strict SysV implementation (without has_key function)
Diffstat (limited to 'Lib/curses')
-rw-r--r-- | Lib/curses/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/curses/__init__.py b/Lib/curses/__init__.py index 61ce443..7bfa667 100644 --- a/Lib/curses/__init__.py +++ b/Lib/curses/__init__.py @@ -53,7 +53,7 @@ def start_color(): try: has_key except NameError: - from has_key import has_key + from .has_key import has_key # Wrapper for the entire curses-based application. Runs a function which # should be the rest of your curses-based application. If the application |