Skip to content

Commit 5d7c9ab

Browse files
author
Victor Stinner
committed
(Merge 3.2) Fix curses module for strict SysV implementation (without has_key function)
2 parents 1439c77 + b9bb1f4 commit 5d7c9ab

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Lib/curses/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ def start_color():
5353
try:
5454
has_key
5555
except NameError:
56-
from has_key import has_key
56+
from .has_key import has_key
5757

5858
# Wrapper for the entire curses-based application. Runs a function which
5959
# should be the rest of your curses-based application. If the application

0 commit comments

Comments
 (0)