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
d0bfa745
Kaydet (Commit)
d0bfa745
authored
Nis 24, 2007
tarafından
Collin Winter
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Remove code that hasn't been called in years.
üst
0fe118b9
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
34 deletions
+0
-34
test_zlib.py
Lib/test/test_zlib.py
+0
-34
No files found.
Lib/test/test_zlib.py
Dosyayı görüntüle @
d0bfa745
...
...
@@ -3,22 +3,6 @@ from test import test_support
import
zlib
import
random
# print test_support.TESTFN
def
getbuf
():
# This was in the original. Avoid non-repeatable sources.
# Left here (unused) in case something wants to be done with it.
import
imp
try
:
t
=
imp
.
find_module
(
'test_zlib'
)
file
=
t
[
0
]
except
ImportError
:
file
=
open
(
__file__
)
buf
=
file
.
read
()
*
8
file
.
close
()
return
buf
class
ChecksumTestCase
(
unittest
.
TestCase
):
# checksum test cases
...
...
@@ -461,21 +445,3 @@ def test_main():
if
__name__
==
"__main__"
:
test_main
()
def
test
(
tests
=
''
):
if
not
tests
:
tests
=
'o'
testcases
=
[]
if
'k'
in
tests
:
testcases
.
append
(
ChecksumTestCase
)
if
'x'
in
tests
:
testcases
.
append
(
ExceptionTestCase
)
if
'c'
in
tests
:
testcases
.
append
(
CompressTestCase
)
if
'o'
in
tests
:
testcases
.
append
(
CompressObjectTestCase
)
test_support
.
run_unittest
(
*
testcases
)
if
False
:
import
sys
sys
.
path
.
insert
(
1
,
'/Py23Src/python/dist/src/Lib/test'
)
import
test_zlib
as
tz
ts
,
ut
=
tz
.
test_support
,
tz
.
unittest
su
=
ut
.
TestSuite
()
su
.
addTest
(
ut
.
makeSuite
(
tz
.
CompressTestCase
))
ts
.
run_suite
(
su
)
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