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
f30b5ae6
Kaydet (Commit)
f30b5ae6
authored
Eyl 18, 2011
tarafından
Éric Araujo
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Replace cmp function with key function
üst
cc06ad18
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
15 deletions
+2
-15
create.py
Lib/packaging/create.py
+2
-15
No files found.
Lib/packaging/create.py
Dosyayı görüntüle @
f30b5ae6
...
...
@@ -28,7 +28,6 @@ import sysconfig
import
tokenize
from
hashlib
import
md5
from
textwrap
import
dedent
from
functools
import
cmp_to_key
from
configparser
import
RawConfigParser
# importing this with an underscore as it should be replaced by the
# dict form or another structures for all purposes
...
...
@@ -370,21 +369,9 @@ class MainProgram:
dist
.
data_files
=
[(
''
,
dist
.
data_files
)]
# add tokens in the destination paths
vars
=
{
'distribution.name'
:
data
[
'name'
]}
path_tokens
=
list
(
sysconfig
.
get_paths
(
vars
=
vars
)
.
items
())
# TODO replace this with a key function
def
length_comparison
(
x
,
y
):
len_x
=
len
(
x
[
1
])
len_y
=
len
(
y
[
1
])
if
len_x
==
len_y
:
return
0
elif
len_x
<
len_y
:
return
-
1
else
:
return
1
path_tokens
=
sysconfig
.
get_paths
(
vars
=
vars
)
.
items
()
# sort tokens to use the longest one first
path_tokens
.
sort
(
key
=
cmp_to_key
(
length_comparison
))
path_tokens
=
sorted
(
path_tokens
,
key
=
lambda
x
:
len
(
x
[
1
]
))
for
dest
,
srcs
in
(
dist
.
data_files
or
[]):
dest
=
os
.
path
.
join
(
sys
.
prefix
,
dest
)
dest
=
dest
.
replace
(
os
.
path
.
sep
,
'/'
)
...
...
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