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
67a93b3a
Unverified
Kaydet (Commit)
67a93b3a
authored
Ara 05, 2018
tarafından
Serhiy Storchaka
Kaydeden (comit)
GitHub
Ara 05, 2018
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
bpo-34738: Add directory entries in ZIP files created by distutils. (GH-9419)
üst
55f41e45
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
27 additions
and
10 deletions
+27
-10
archive_util.py
Lib/distutils/archive_util.py
+8
-0
test_archive_util.py
Lib/distutils/tests/test_archive_util.py
+6
-7
test_bdist_dumb.py
Lib/distutils/tests/test_bdist_dumb.py
+1
-1
test_sdist.py
Lib/distutils/tests/test_sdist.py
+10
-2
2018-09-19-16-51-04.bpo-34738.Pr3-iG.rst
...S.d/next/Library/2018-09-19-16-51-04.bpo-34738.Pr3-iG.rst
+2
-0
No files found.
Lib/distutils/archive_util.py
Dosyayı görüntüle @
67a93b3a
...
...
@@ -166,7 +166,15 @@ def make_zipfile(base_name, base_dir, verbose=0, dry_run=0):
zip
=
zipfile
.
ZipFile
(
zip_filename
,
"w"
,
compression
=
zipfile
.
ZIP_STORED
)
if
base_dir
!=
os
.
curdir
:
path
=
os
.
path
.
normpath
(
os
.
path
.
join
(
base_dir
,
''
))
zip
.
write
(
path
,
path
)
log
.
info
(
"adding '
%
s'"
,
path
)
for
dirpath
,
dirnames
,
filenames
in
os
.
walk
(
base_dir
):
for
name
in
dirnames
:
path
=
os
.
path
.
normpath
(
os
.
path
.
join
(
dirpath
,
name
,
''
))
zip
.
write
(
path
,
path
)
log
.
info
(
"adding '
%
s'"
,
path
)
for
name
in
filenames
:
path
=
os
.
path
.
normpath
(
os
.
path
.
join
(
dirpath
,
name
))
if
os
.
path
.
isfile
(
path
):
...
...
Lib/distutils/tests/test_archive_util.py
Dosyayı görüntüle @
67a93b3a
...
...
@@ -122,12 +122,13 @@ class ArchiveUtilTestCase(support.TempdirManager,
try
:
names
=
tar
.
getnames
()
names
.
sort
()
return
tuple
(
names
)
return
names
finally
:
tar
.
close
()
_created_files
=
(
'dist'
,
'dist/file1'
,
'dist/file2'
,
'dist/sub'
,
'dist/sub/file3'
,
'dist/sub2'
)
_zip_created_files
=
[
'dist/'
,
'dist/file1'
,
'dist/file2'
,
'dist/sub/'
,
'dist/sub/file3'
,
'dist/sub2/'
]
_created_files
=
[
p
.
rstrip
(
'/'
)
for
p
in
_zip_created_files
]
def
_create_files
(
self
):
# creating something to tar
...
...
@@ -244,8 +245,7 @@ class ArchiveUtilTestCase(support.TempdirManager,
tarball
=
base_name
+
'.zip'
self
.
assertTrue
(
os
.
path
.
exists
(
tarball
))
with
zipfile
.
ZipFile
(
tarball
)
as
zf
:
self
.
assertEqual
(
sorted
(
zf
.
namelist
()),
[
'dist/file1'
,
'dist/file2'
,
'dist/sub/file3'
])
self
.
assertEqual
(
sorted
(
zf
.
namelist
()),
self
.
_zip_created_files
)
@unittest.skipUnless
(
ZIP_SUPPORT
,
'Need zip support to run'
)
def
test_make_zipfile_no_zlib
(
self
):
...
...
@@ -271,8 +271,7 @@ class ArchiveUtilTestCase(support.TempdirManager,
[((
tarball
,
"w"
),
{
'compression'
:
zipfile
.
ZIP_STORED
})])
self
.
assertTrue
(
os
.
path
.
exists
(
tarball
))
with
zipfile
.
ZipFile
(
tarball
)
as
zf
:
self
.
assertEqual
(
sorted
(
zf
.
namelist
()),
[
'dist/file1'
,
'dist/file2'
,
'dist/sub/file3'
])
self
.
assertEqual
(
sorted
(
zf
.
namelist
()),
self
.
_zip_created_files
)
def
test_check_archive_formats
(
self
):
self
.
assertEqual
(
check_archive_formats
([
'gztar'
,
'xxx'
,
'zip'
]),
...
...
Lib/distutils/tests/test_bdist_dumb.py
Dosyayı görüntüle @
67a93b3a
...
...
@@ -84,7 +84,7 @@ class BuildDumbTestCase(support.TempdirManager,
finally
:
fp
.
close
()
contents
=
sorted
(
os
.
path
.
basename
(
fn
)
for
fn
in
contents
)
contents
=
sorted
(
filter
(
None
,
map
(
os
.
path
.
basename
,
contents
))
)
wanted
=
[
'foo-0.1-py
%
s.
%
s.egg-info'
%
sys
.
version_info
[:
2
],
'foo.py'
]
if
not
sys
.
dont_write_bytecode
:
wanted
.
append
(
'foo.
%
s.pyc'
%
sys
.
implementation
.
cache_tag
)
...
...
Lib/distutils/tests/test_sdist.py
Dosyayı görüntüle @
67a93b3a
...
...
@@ -128,7 +128,9 @@ class SDistTestCase(BasePyPIRCCommandTestCase):
zip_file
.
close
()
# making sure everything has been pruned correctly
self
.
assertEqual
(
len
(
content
),
4
)
expected
=
[
''
,
'PKG-INFO'
,
'README'
,
'setup.py'
,
'somecode/'
,
'somecode/__init__.py'
]
self
.
assertEqual
(
sorted
(
content
),
[
'fake-1.0/'
+
x
for
x
in
expected
])
@unittest.skipUnless
(
ZLIB_SUPPORT
,
'Need zlib support to run'
)
@unittest.skipIf
(
find_executable
(
'tar'
)
is
None
,
...
...
@@ -226,7 +228,13 @@ class SDistTestCase(BasePyPIRCCommandTestCase):
zip_file
.
close
()
# making sure everything was added
self
.
assertEqual
(
len
(
content
),
12
)
expected
=
[
''
,
'PKG-INFO'
,
'README'
,
'buildout.cfg'
,
'data/'
,
'data/data.dt'
,
'inroot.txt'
,
'scripts/'
,
'scripts/script.py'
,
'setup.py'
,
'some/'
,
'some/file.txt'
,
'some/other_file.txt'
,
'somecode/'
,
'somecode/__init__.py'
,
'somecode/doc.dat'
,
'somecode/doc.txt'
]
self
.
assertEqual
(
sorted
(
content
),
[
'fake-1.0/'
+
x
for
x
in
expected
])
# checking the MANIFEST
f
=
open
(
join
(
self
.
tmp_dir
,
'MANIFEST'
))
...
...
Misc/NEWS.d/next/Library/2018-09-19-16-51-04.bpo-34738.Pr3-iG.rst
0 → 100644
Dosyayı görüntüle @
67a93b3a
ZIP files created by :mod:`distutils` will now include entries for
directories.
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