summaryrefslogtreecommitdiff
path: root/Lib/pkgutil.py
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2003-09-17 05:50:59 +0000
committerRaymond Hettinger <python@rcn.com>2003-09-17 05:50:59 +0000
commitc7be6e629dd042a6e65340cfe0a1aa4f8cae6d08 (patch)
treed2a2e4a0feefa2a98b1259383d3044dc2a5c2bd7 /Lib/pkgutil.py
parent08b98bf85a5056478cb614034fa791529ce5b7dd (diff)
downloadcpython-c7be6e629dd042a6e65340cfe0a1aa4f8cae6d08.tar.gz
SF patch #806246: use basestring where possible
(Contributed by George Yoshida.)
Diffstat (limited to 'Lib/pkgutil.py')
-rw-r--r--Lib/pkgutil.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/pkgutil.py b/Lib/pkgutil.py
index 42373711c0..fbd708acc2 100644
--- a/Lib/pkgutil.py
+++ b/Lib/pkgutil.py
@@ -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