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
f3b4903a
Kaydet (Commit)
f3b4903a
authored
May 23, 1994
tarafından
Guido van Rossum
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
dospath: fix by Amrit (don't normalize glob patterns away)
ftplib: get rid of non-auto port assignment
üst
f624666e
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
1 deletion
+7
-1
dospath.py
Lib/dospath.py
+7
-1
No files found.
Lib/dospath.py
Dosyayı görüntüle @
f3b4903a
...
...
@@ -10,6 +10,12 @@ import string
# backslashes and maps invalid consecutive characters to a single '_'.
# Other normalizations (such as optimizing '../' away) are not allowed
# (this is done by normpath).
#
# Amrit: Things that can be valid regular expressions cannot be normalized
# away. (which is pretty much all special characters)
#
# I am assuming that at least these chars may be used:
# [, ], |, *, +, ?
mapchar
=
'_'
...
...
@@ -20,7 +26,7 @@ def normcase(s):
res
=
res
+
os
.
sep
elif
c
==
'.'
and
res
[
-
1
:]
==
os
.
sep
:
res
=
res
+
mapchar
+
c
elif
ord
(
c
)
<
32
or
c
in
' "
*+,:;<=>?[]|
'
:
elif
ord
(
c
)
<
32
or
c
in
' "
,:;<=>
'
:
if
res
[
-
1
:]
!=
mapchar
:
res
=
res
+
mapchar
else
:
...
...
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