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
74510e2a
Kaydet (Commit)
74510e2a
authored
Mar 28, 2019
tarafından
Wolfgang Maier
Kaydeden (comit)
Miss Islington (bot)
Mar 28, 2019
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
bpo-30427: eliminate redundant type checks in os.path.normcase() (GH-1712)
https://bugs.python.org/issue30427
üst
02b84cb1
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
7 additions
and
15 deletions
+7
-15
ntpath.py
Lib/ntpath.py
+4
-10
posixpath.py
Lib/posixpath.py
+1
-5
2019-03-28-21-17-08.bpo-30427.lxzvbw.rst
...S.d/next/Library/2019-03-28-21-17-08.bpo-30427.lxzvbw.rst
+2
-0
No files found.
Lib/ntpath.py
Dosyayı görüntüle @
74510e2a
...
...
@@ -46,16 +46,10 @@ def normcase(s):
Makes all characters lowercase and all slashes into backslashes."""
s
=
os
.
fspath
(
s
)
try
:
if
isinstance
(
s
,
bytes
):
return
s
.
replace
(
b
'/'
,
b
'
\\
'
)
.
lower
()
else
:
return
s
.
replace
(
'/'
,
'
\\
'
)
.
lower
()
except
(
TypeError
,
AttributeError
):
if
not
isinstance
(
s
,
(
bytes
,
str
)):
raise
TypeError
(
"normcase() argument must be str or bytes, "
"not
%
r"
%
s
.
__class__
.
__name__
)
from
None
raise
if
isinstance
(
s
,
bytes
):
return
s
.
replace
(
b
'/'
,
b
'
\\
'
)
.
lower
()
else
:
return
s
.
replace
(
'/'
,
'
\\
'
)
.
lower
()
# Return whether a path is absolute.
...
...
Lib/posixpath.py
Dosyayı görüntüle @
74510e2a
...
...
@@ -51,11 +51,7 @@ def _get_sep(path):
def
normcase
(
s
):
"""Normalize case of pathname. Has no effect under Posix"""
s
=
os
.
fspath
(
s
)
if
not
isinstance
(
s
,
(
bytes
,
str
)):
raise
TypeError
(
"normcase() argument must be str or bytes, "
"not '{}'"
.
format
(
s
.
__class__
.
__name__
))
return
s
return
os
.
fspath
(
s
)
# Return whether a path is absolute.
...
...
Misc/NEWS.d/next/Library/2019-03-28-21-17-08.bpo-30427.lxzvbw.rst
0 → 100644
Dosyayı görüntüle @
74510e2a
``os.path.normcase()`` relies on ``os.fspath()`` to check the type of its argument. Redundant checks have been removed from its ``posixpath.normcase()`` and ``ntpath.normcase()`` implementations.
Patch by Wolfgang Maier.
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