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
0e5001ef
Kaydet (Commit)
0e5001ef
authored
Şub 17, 2009
tarafından
Tarek Ziadé
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
fixed the data_files inclusion behavior
üst
17a837e4
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
8 additions
and
3 deletions
+8
-3
sdist.py
Lib/distutils/command/sdist.py
+1
-1
test_sdist.py
Lib/distutils/tests/test_sdist.py
+6
-2
ACKS
Misc/ACKS
+1
-0
No files found.
Lib/distutils/command/sdist.py
Dosyayı görüntüle @
0e5001ef
...
...
@@ -319,7 +319,7 @@ class sdist (Command):
else
:
# a (dirname, filenames) tuple
dirname
,
filenames
=
item
for
f
in
filenames
:
f
=
convert_path
(
os
.
path
.
join
(
dirname
,
f
)
)
f
=
convert_path
(
f
)
if
os
.
path
.
isfile
(
f
):
self
.
filelist
.
append
(
f
)
...
...
Lib/distutils/tests/test_sdist.py
Dosyayı görüntüle @
0e5001ef
...
...
@@ -23,6 +23,7 @@ setup(name='fake')
MANIFEST
=
"""
\
README
inroot.txt
setup.py
data
%(sep)
sdata.dt
scripts
%(sep)
sscript.py
...
...
@@ -171,10 +172,13 @@ class sdistTestCase(support.LoggingSilencer, PyPIRCCommandTestCase):
self
.
write_file
((
data_dir
,
'data.dt'
),
'#'
)
some_dir
=
join
(
self
.
tmp_dir
,
'some'
)
os
.
mkdir
(
some_dir
)
self
.
write_file
((
self
.
tmp_dir
,
'inroot.txt'
),
'#'
)
self
.
write_file
((
some_dir
,
'file.txt'
),
'#'
)
self
.
write_file
((
some_dir
,
'other_file.txt'
),
'#'
)
dist
.
data_files
=
[(
'data'
,
[
'data.dt'
,
'notexisting'
]),
dist
.
data_files
=
[(
'data'
,
[
'data/data.dt'
,
'inroot.txt'
,
'notexisting'
]),
'some/file.txt'
,
'some/other_file.txt'
]
...
...
@@ -202,7 +206,7 @@ class sdistTestCase(support.LoggingSilencer, PyPIRCCommandTestCase):
zip_file
.
close
()
# making sure everything was added
self
.
assertEquals
(
len
(
content
),
1
0
)
self
.
assertEquals
(
len
(
content
),
1
1
)
# checking the MANIFEST
manifest
=
open
(
join
(
self
.
tmp_dir
,
'MANIFEST'
))
.
read
()
...
...
Misc/ACKS
Dosyayı görüntüle @
0e5001ef
...
...
@@ -611,6 +611,7 @@ Sam Rushing
Mark Russell
Nick Russo
Hajime Saitou
George Sakkis
Rich Salz
Kevin Samborn
Ilya Sandler
...
...
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