mirror of
https://github.com/python/cpython.git
synced 2025-08-31 22:18:28 +00:00
SF patch #806246: use basestring where possible
(Contributed by George Yoshida.)
This commit is contained in:
parent
d21fd7bd86
commit
7a70ea4135
3 changed files with 3 additions and 3 deletions
|
@ -50,7 +50,7 @@ def extend_path(path, name):
|
|||
path = path[:] # Start with a copy of the existing path
|
||||
|
||||
for dir in sys.path:
|
||||
if not isinstance(dir, (str, unicode)) or not os.path.isdir(dir):
|
||||
if not isinstance(dir, basestring) or not os.path.isdir(dir):
|
||||
continue
|
||||
subdir = os.path.join(dir, pname)
|
||||
# XXX This may still add duplicate entries to path on
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue