SF patch #806246: use basestring where possible

(Contributed by George Yoshida.)
This commit is contained in:
Raymond Hettinger 2003-09-17 05:50:59 +00:00
parent d21fd7bd86
commit 7a70ea4135
3 changed files with 3 additions and 3 deletions

View file

@ -1187,7 +1187,7 @@ def _normalize_module(module):
module = sys._getframe(2).f_globals['__name__']
module = sys.modules[module]
elif isinstance(module, (str, unicode)):
elif isinstance(module, basestring):
# The ["*"] at the end is a mostly meaningless incantation with
# a crucial property: if, e.g., module is 'a.b.c', it convinces
# __import__ to return c instead of a.