Will backport to 2.4.
This commit is contained in:
parent
142e16d338
commit
0a5d4a20e7
|
@ -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,)
|
||||
|
||||
|
|
|
@ -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.
|
||||
|
|
Loading…
Reference in New Issue