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
1815191f
Kaydet (Commit)
1815191f
authored
Tem 17, 2012
tarafından
Hynek Schlawack
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Sade Fark
#15377: Make posixpath.join() more strict when checking for str/bytes mix
Based on a patch by Nick Coghlan.
üst
9c3cf6b4
c5a45669
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
17 additions
and
12 deletions
+17
-12
posixpath.py
Lib/posixpath.py
+4
-3
test_posixpath.py
Lib/test/test_posixpath.py
+13
-9
No files found.
Lib/posixpath.py
Dosyayı görüntüle @
1815191f
...
...
@@ -83,11 +83,12 @@ def join(a, *p):
else
:
path
+=
sep
+
b
except
TypeError
:
strs
=
[
isinstance
(
s
,
str
)
for
s
in
(
a
,
)
+
p
]
if
any
(
strs
)
and
not
all
(
strs
):
valid_types
=
all
(
isinstance
(
s
,
(
str
,
bytes
,
bytearray
))
for
s
in
(
a
,
)
+
p
)
if
valid_types
:
# Must have a mixture of text and binary data
raise
TypeError
(
"Can't mix strings and bytes in path "
"components."
)
from
None
else
:
raise
return
path
...
...
Lib/test/test_posixpath.py
Dosyayı görüntüle @
1815191f
import
itertools
import
os
import
posixpath
import
sys
...
...
@@ -56,18 +57,21 @@ class PosixPathTest(unittest.TestCase):
self
.
assertEqual
(
posixpath
.
join
(
b
"/foo/"
,
b
"bar/"
,
b
"baz/"
),
b
"/foo/bar/baz/"
)
# Check for friendly str/bytes mixing message
for
args
in
[[
b
'bytes'
,
'str'
],
[
bytearray
(
b
'bytes'
),
'str'
]]:
for
_
in
range
(
2
):
def
check_error_msg
(
list_of_args
,
msg
):
"""Check posixpath.join raises friendly TypeErrors."""
for
args
in
(
item
for
perm
in
list_of_args
for
item
in
itertools
.
permutations
(
perm
)
):
with
self
.
assertRaises
(
TypeError
)
as
cm
:
posixpath
.
join
(
*
args
)
self
.
assertEqual
(
"Can't mix strings and bytes in path components."
,
cm
.
exception
.
args
[
0
]
)
args
.
reverse
()
# check both orders
self
.
assertEqual
(
msg
,
cm
.
exception
.
args
[
0
])
check_error_msg
([[
b
'bytes'
,
'str'
],
[
bytearray
(
b
'bytes'
),
'str'
]],
"Can't mix strings and bytes in path components."
)
# regression, see #15377
with
self
.
assertRaises
(
TypeError
)
as
cm
:
os
.
path
.
join
(
None
,
'str'
)
self
.
assertNotEqual
(
"Can't mix strings and bytes in path components."
,
cm
.
exception
.
args
[
0
])
def
test_split
(
self
):
self
.
assertEqual
(
posixpath
.
split
(
"/foo/bar"
),
(
"/foo"
,
"bar"
))
...
...
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