diff options
author | Victor Stinner <victor.stinner@haypocalc.com> | 2011-11-28 23:03:50 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@haypocalc.com> | 2011-11-28 23:03:50 (GMT) |
commit | b9bb1f4db36ce4867f2d76fe04344a6c1d059a90 (patch) | |
tree | caa70be7b67ddd3485ee0f9b4627c4dc5bc8693f /Lib/curses | |
parent | f1c141b7fbbbdf7ac11931e007c774b69e088135 (diff) | |
download | cpython-b9bb1f4db36ce4867f2d76fe04344a6c1d059a90.zip cpython-b9bb1f4db36ce4867f2d76fe04344a6c1d059a90.tar.gz cpython-b9bb1f4db36ce4867f2d76fe04344a6c1d059a90.tar.bz2 |
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 303ea3e..a3e9def 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 |