Patch #1167716: Support Unicode filenames in mkpath. Fixes #1121494.

Will backport to 2.4.
This commit is contained in:
Martin v. Löwis 2005-08-24 14:55:22 +00:00
parent 142e16d338
commit 0a5d4a20e7
2 changed files with 3 additions and 1 deletions

View file

@ -31,7 +31,7 @@ def mkpath (name, mode=0777, verbose=0, dry_run=0):
global _path_created
# Detect a common bug -- name is None
if type(name) is not StringType:
if not isinstance(name, StringTypes):
raise DistutilsInternalError, \
"mkpath: 'name' must be a string (got %r)" % (name,)