diff options
Diffstat (limited to 'Lib/curses/__init__.py')
-rw-r--r-- | Lib/curses/__init__.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/Lib/curses/__init__.py b/Lib/curses/__init__.py index bd7d5f61cf..a3e9def72a 100644 --- a/Lib/curses/__init__.py +++ b/Lib/curses/__init__.py @@ -10,8 +10,6 @@ the package, and perhaps a particular module inside it. """ -__revision__ = "$Id$" - from _curses import * from curses.wrapper import wrapper import os as _os @@ -56,4 +54,4 @@ def start_color(): try: has_key except NameError: - from has_key import has_key + from .has_key import has_key |