Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
cpython
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
cpython
Commits
0a5d4a20
Kaydet (Commit)
0a5d4a20
authored
Agu 24, 2005
tarafından
Martin v. Löwis
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Patch #1167716: Support Unicode filenames in mkpath. Fixes #1121494.
Will backport to 2.4.
üst
142e16d3
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
1 deletion
+3
-1
dir_util.py
Lib/distutils/dir_util.py
+1
-1
NEWS
Misc/NEWS
+2
-0
No files found.
Lib/distutils/dir_util.py
Dosyayı görüntüle @
0a5d4a20
...
...
@@ -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
,)
...
...
Misc/NEWS
Dosyayı görüntüle @
0a5d4a20
...
...
@@ -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
.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment