commit | b9bb1f4db36ce4867f2d76fe04344a6c1d059a90 | [log] [tgz] |
---|---|---|
author | Victor Stinner <victor.stinner@haypocalc.com> | Tue Nov 29 00:03:50 2011 +0100 |
committer | Victor Stinner <victor.stinner@haypocalc.com> | Tue Nov 29 00:03:50 2011 +0100 |
tree | caa70be7b67ddd3485ee0f9b4627c4dc5bc8693f | |
parent | f1c141b7fbbbdf7ac11931e007c774b69e088135 [diff] |
Fix curses module for strict SysV implementation (without has_key function)
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 @@ try: has_key except NameError: - from has_key import has_key + from .has_key import has_key