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,)

View File

@ -193,6 +193,8 @@ Extension Modules
Library
-------
- Bug #1121494: distutils.dir_utils.mkpath now accepts Unicode strings.
- Bug #1178484: Return complete lines from codec stream readers
even if there is an exception in later lines, resulting in
correct line numbers for decoding errors in source code.