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
dc40ae6b
Kaydet (Commit)
dc40ae6b
authored
Tem 17, 2007
tarafından
Collin Winter
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fix two bugs from the map->itertools.imap switch.
üst
2c8fef07
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
6 deletions
+5
-6
filelist.py
Lib/distutils/filelist.py
+1
-2
version.py
Lib/distutils/version.py
+4
-4
No files found.
Lib/distutils/filelist.py
Dosyayı görüntüle @
dc40ae6b
...
...
@@ -65,8 +65,7 @@ class FileList:
def
sort
(
self
):
# Not a strict lexical sort!
sortable_files
=
map
(
os
.
path
.
split
,
self
.
files
)
sortable_files
.
sort
()
sortable_files
=
sorted
(
map
(
os
.
path
.
split
,
self
.
files
))
self
.
files
=
[]
for
sort_tuple
in
sortable_files
:
self
.
files
.
append
(
os
.
path
.
join
(
*
sort_tuple
))
...
...
Lib/distutils/version.py
Dosyayı görüntüle @
dc40ae6b
...
...
@@ -306,11 +306,11 @@ class LooseVersion (Version):
# from the parsed tuple -- so I just store the string here for
# use by __str__
self
.
vstring
=
vstring
components
=
filter
(
lambda
x
:
x
and
x
!=
'.'
,
self
.
component_re
.
split
(
vstring
))
for
i
in
range
(
len
(
components
)
):
components
=
[
x
for
x
in
self
.
component_re
.
split
(
vstring
)
if
x
and
x
!=
'.'
]
for
i
,
obj
in
enumerate
(
components
):
try
:
components
[
i
]
=
int
(
components
[
i
]
)
components
[
i
]
=
int
(
obj
)
except
ValueError
:
pass
...
...
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