mirror of
https://github.com/python/cpython.git
synced 2025-09-26 18:29:57 +00:00
replace has_key with 'in' operator
This commit is contained in:
parent
de0559998f
commit
6e3dbbdf39
29 changed files with 71 additions and 71 deletions
|
@ -52,7 +52,7 @@ if not os.path.exists(prefix):
|
|||
# if this does not exist, no further search is needed
|
||||
if os.path.exists(prefix):
|
||||
prefix = convert_path(prefix)
|
||||
if not os.environ.has_key("TCL_LIBRARY"):
|
||||
if "TCL_LIBRARY" not in os.environ:
|
||||
for name in os.listdir(prefix):
|
||||
if name.startswith("tcl"):
|
||||
tcldir = os.path.join(prefix,name)
|
||||
|
@ -62,13 +62,13 @@ if os.path.exists(prefix):
|
|||
# as Tcl
|
||||
import _tkinter
|
||||
ver = str(_tkinter.TCL_VERSION)
|
||||
if not os.environ.has_key("TK_LIBRARY"):
|
||||
if "TK_LIBRARY" not in os.environ:
|
||||
v = os.path.join(prefix, 'tk'+ver)
|
||||
if os.path.exists(os.path.join(v, "tclIndex")):
|
||||
os.environ['TK_LIBRARY'] = v
|
||||
# We don't know the Tix version, so we must search the entire
|
||||
# directory
|
||||
if not os.environ.has_key("TIX_LIBRARY"):
|
||||
if "TIX_LIBRARY" not in os.environ:
|
||||
for name in os.listdir(prefix):
|
||||
if name.startswith("tix"):
|
||||
tixdir = os.path.join(prefix,name)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue