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
0009c4ea
Kaydet (Commit)
0009c4ea
authored
Şub 21, 2001
tarafından
Tim Peters
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Whitespace normalization.
üst
edf22102
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
4 additions
and
5 deletions
+4
-5
test_compile.py
Lib/test/test_compile.py
+1
-1
test_minidom.py
Lib/test/test_minidom.py
+1
-1
test_support.py
Lib/test/test_support.py
+0
-1
test_zlib.py
Lib/test/test_zlib.py
+2
-2
No files found.
Lib/test/test_compile.py
Dosyayı görüntüle @
0009c4ea
...
...
@@ -24,7 +24,7 @@ except SyntaxError:
print
"testing complex args"
def
comp_args
((
a
,
b
)):
print
a
,
b
print
a
,
b
comp_args
((
1
,
2
))
...
...
Lib/test/test_minidom.py
Dosyayı görüntüle @
0009c4ea
...
...
@@ -98,7 +98,7 @@ def testLegalChildren():
else
:
print
"dom.appendChild didn't raise HierarchyRequestErr"
nodemap
=
elem
.
attributes
nodemap
=
elem
.
attributes
try
:
nodemap
.
setNamedItem
(
text
)
except
HierarchyRequestErr
:
pass
else
:
...
...
Lib/test/test_support.py
Dosyayı görüntüle @
0009c4ea
...
...
@@ -87,4 +87,3 @@ def check_syntax(statement):
pass
else
:
print
'Missing SyntaxError: "
%
s"'
%
statement
Lib/test/test_zlib.py
Dosyayı görüntüle @
0009c4ea
...
...
@@ -92,7 +92,7 @@ for sync in [zlib.Z_NO_FLUSH, zlib.Z_SYNC_FLUSH, zlib.Z_FULL_FLUSH]:
# Test for the odd flushing bugs noted in 2.0, and hopefully fixed in 2.1
import
random
random
.
seed
(
1
)
random
.
seed
(
1
)
print
'Testing on 17K of random data'
...
...
@@ -105,7 +105,7 @@ d=zlib.decompressobj()
a
=
""
for
i
in
range
(
17
*
1024
):
a
=
a
+
chr
(
random
.
randint
(
0
,
255
))
# compress, sync-flush, and decompress
t
=
d
.
decompress
(
c
.
compress
(
a
)
+
c
.
flush
(
zlib
.
Z_SYNC_FLUSH
)
)
...
...
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