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
abcc168c
Kaydet (Commit)
abcc168c
authored
Ock 02, 2009
tarafından
Ronald Oussoren
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fix for issue 1149804
üst
919697ce
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
1 deletion
+11
-1
macostools.py
Lib/plat-mac/macostools.py
+8
-1
NEWS
Misc/NEWS
+3
-0
No files found.
Lib/plat-mac/macostools.py
Dosyayı görüntüle @
abcc168c
...
...
@@ -62,7 +62,14 @@ def mkdirs(dst):
if
os
.
sep
==
':'
and
not
':'
in
head
:
head
=
head
+
':'
mkdirs
(
head
)
os
.
mkdir
(
dst
,
0777
)
try
:
os
.
mkdir
(
dst
,
0777
)
except
OSError
,
e
:
# be happy if someone already created the path
if
e
.
errno
!=
errno
.
EEXIST
:
raise
def
touched
(
dst
):
"""Tell the finder a file has changed. No-op on MacOSX."""
...
...
Misc/NEWS
Dosyayı görüntüle @
abcc168c
...
...
@@ -235,6 +235,9 @@ Library
- Issue #1737832 : plat-mac/EasyDialog.py no longer uses the broken aepack
module.
- Issue #1149804: macostools.mkdirs now even works when another process
creates one of the needed subdirectories.
Tools/Demos
-----------
...
...
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