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
0a99b2ab
Kaydet (Commit)
0a99b2ab
authored
Kas 27, 2014
tarafından
Serhiy Storchaka
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Sade Fark
Issue #21280: Fixed a bug in shutil.make_archive() when create an archive of
current directory in current directory.
üst
f1fc9fb3
9a4fc195
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
17 additions
and
2 deletions
+17
-2
shutil.py
Lib/shutil.py
+2
-2
test_shutil.py
Lib/test/test_shutil.py
+15
-0
No files found.
Lib/shutil.py
Dosyayı görüntüle @
0a99b2ab
...
...
@@ -617,7 +617,7 @@ def _make_tarball(base_name, base_dir, compress="gzip", verbose=0, dry_run=0,
archive_name
=
base_name
+
'.tar'
+
compress_ext
.
get
(
compress
,
''
)
archive_dir
=
os
.
path
.
dirname
(
archive_name
)
if
not
os
.
path
.
exists
(
archive_dir
):
if
archive_dir
and
not
os
.
path
.
exists
(
archive_dir
):
if
logger
is
not
None
:
logger
.
info
(
"creating
%
s"
,
archive_dir
)
if
not
dry_run
:
...
...
@@ -662,7 +662,7 @@ def _make_zipfile(base_name, base_dir, verbose=0, dry_run=0, logger=None):
zip_filename
=
base_name
+
".zip"
archive_dir
=
os
.
path
.
dirname
(
base_name
)
if
not
os
.
path
.
exists
(
archive_dir
):
if
archive_dir
and
not
os
.
path
.
exists
(
archive_dir
):
if
logger
is
not
None
:
logger
.
info
(
"creating
%
s"
,
archive_dir
)
if
not
dry_run
:
...
...
Lib/test/test_shutil.py
Dosyayı görüntüle @
0a99b2ab
...
...
@@ -1132,6 +1132,21 @@ class TestShutil(unittest.TestCase):
finally
:
unregister_archive_format
(
'xxx'
)
def
test_make_tarfile_in_curdir
(
self
):
# Issue #21280
root_dir
=
self
.
mkdtemp
()
with
support
.
change_cwd
(
root_dir
):
self
.
assertEqual
(
make_archive
(
'test'
,
'tar'
),
'test.tar'
)
self
.
assertTrue
(
os
.
path
.
isfile
(
'test.tar'
))
@requires_zlib
def
test_make_zipfile_in_curdir
(
self
):
# Issue #21280
root_dir
=
self
.
mkdtemp
()
with
support
.
change_cwd
(
root_dir
):
self
.
assertEqual
(
make_archive
(
'test'
,
'zip'
),
'test.zip'
)
self
.
assertTrue
(
os
.
path
.
isfile
(
'test.zip'
))
def
test_register_archive_format
(
self
):
self
.
assertRaises
(
TypeError
,
register_archive_format
,
'xxx'
,
1
)
...
...
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