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
368f04ac
Kaydet (Commit)
368f04ac
authored
Nis 10, 2000
tarafından
Guido van Rossum
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Test for zipfile.py, by Jim Ahlstrom.
üst
d197a3a1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
26 additions
and
0 deletions
+26
-0
test_zipfile.py
Lib/test/test_zipfile.py
+26
-0
No files found.
Lib/test/test_zipfile.py
0 → 100644
Dosyayı görüntüle @
368f04ac
import
zipfile
,
os
srcname
=
"junk9630.tmp"
zipname
=
"junk9708.tmp"
try
:
fp
=
open
(
srcname
,
"w"
)
# Make a source file with some lines
for
i
in
range
(
0
,
1000
):
fp
.
write
(
"Test of zipfile line
%
d.
\n
"
%
i
)
fp
.
close
()
zip
=
zipfile
.
ZipFile
(
zipname
,
"w"
)
# Create the ZIP archive
zip
.
write
(
srcname
,
srcname
)
zip
.
write
(
srcname
,
"another.name"
)
zip
.
close
()
zip
=
zipfile
.
ZipFile
(
zipname
,
"r"
)
# Read the ZIP archive
zip
.
read
(
"another.name"
)
zip
.
read
(
srcname
)
zip
.
close
()
finally
:
if
os
.
path
.
isfile
(
srcname
):
# Remove temporary files
os
.
unlink
(
srcname
)
if
os
.
path
.
isfile
(
zipname
):
os
.
unlink
(
zipname
)
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