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
1add96f1
Kaydet (Commit)
1add96f1
authored
Şub 04, 2017
tarafından
Steve Dower
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Sade Fark
Issue #29416: Prevent infinite loop in pathlib.Path.mkdir
üst
86e42376
d3c4853b
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
14 additions
and
1 deletion
+14
-1
pathlib.py
Lib/pathlib.py
+1
-1
test_pathlib.py
Lib/test/test_pathlib.py
+11
-0
NEWS
Misc/NEWS
+2
-0
No files found.
Lib/pathlib.py
Dosyayı görüntüle @
1add96f1
...
...
@@ -1235,7 +1235,7 @@ class Path(PurePath):
if
not
exist_ok
or
not
self
.
is_dir
():
raise
except
OSError
as
e
:
if
e
.
errno
!=
ENOENT
:
if
e
.
errno
!=
ENOENT
or
self
.
parent
==
self
:
raise
self
.
parent
.
mkdir
(
parents
=
True
)
self
.
_accessor
.
mkdir
(
self
,
mode
)
...
...
Lib/test/test_pathlib.py
Dosyayı görüntüle @
1add96f1
...
...
@@ -1776,6 +1776,17 @@ class _BasePathTest(object):
self
.
assertTrue
(
p
.
exists
())
self
.
assertEqual
(
p
.
stat
()
.
st_ctime
,
st_ctime_first
)
@only_nt
# XXX: not sure how to test this on POSIX
def
test_mkdir_with_unknown_drive
(
self
):
for
d
in
'ZYXWVUTSRQPONMLKJIHGFEDCBA'
:
p
=
self
.
cls
(
d
+
':
\\
'
)
if
not
p
.
is_dir
():
break
else
:
self
.
skipTest
(
"cannot find a drive that doesn't exist"
)
with
self
.
assertRaises
(
OSError
):
(
p
/
'child'
/
'path'
)
.
mkdir
(
parents
=
True
)
def
test_mkdir_with_child_file
(
self
):
p
=
self
.
cls
(
BASE
,
'dirB'
,
'fileB'
)
self
.
assertTrue
(
p
.
exists
())
...
...
Misc/NEWS
Dosyayı görüntüle @
1add96f1
...
...
@@ -55,6 +55,8 @@ Extension Modules
Library
-------
- Issue #29416: Prevent infinite loop in pathlib.Path.mkdir
- Issue #29444: Fixed out-of-bounds buffer access in the group() method of
the match object. Based on patch by WGH.
...
...
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