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
40f5e4c5
Kaydet (Commit)
40f5e4c5
authored
Mar 25, 2008
tarafından
Neal Norwitz
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fix a bunch of UnboundLocalErrors when the tests fail.
üst
fac02fae
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
6 deletions
+9
-6
test_deque.py
Lib/test/test_deque.py
+6
-6
test_uu.py
Lib/test/test_uu.py
+3
-0
No files found.
Lib/test/test_deque.py
Dosyayı görüntüle @
40f5e4c5
...
...
@@ -63,27 +63,27 @@ class TestBasic(unittest.TestCase):
self
.
assertEqual
(
list
(
d
),
range
(
7
,
10
))
d
=
deque
(
xrange
(
200
),
maxlen
=
10
)
d
.
append
(
d
)
fo
=
open
(
test_support
.
TESTFN
,
"wb"
)
try
:
fo
=
open
(
test_support
.
TESTFN
,
"wb"
)
print
>>
fo
,
d
,
fo
.
close
()
fo
=
open
(
test_support
.
TESTFN
,
"rb"
)
self
.
assertEqual
(
fo
.
read
(),
repr
(
d
))
finally
:
fo
.
close
()
os
.
remove
(
test_support
.
TESTFN
)
test_support
.
unlink
(
test_support
.
TESTFN
)
d
=
deque
(
range
(
10
),
maxlen
=
None
)
self
.
assertEqual
(
repr
(
d
),
'deque([0, 1, 2, 3, 4, 5, 6, 7, 8, 9])'
)
fo
=
open
(
test_support
.
TESTFN
,
"wb"
)
try
:
fo
=
open
(
test_support
.
TESTFN
,
"wb"
)
print
>>
fo
,
d
,
fo
.
close
()
fo
=
open
(
test_support
.
TESTFN
,
"rb"
)
self
.
assertEqual
(
fo
.
read
(),
repr
(
d
))
finally
:
fo
.
close
()
os
.
remove
(
test_support
.
TESTFN
)
test_support
.
unlink
(
test_support
.
TESTFN
)
def
test_comparisons
(
self
):
d
=
deque
(
'xabc'
);
d
.
popleft
()
...
...
@@ -281,15 +281,15 @@ class TestBasic(unittest.TestCase):
def
test_print
(
self
):
d
=
deque
(
xrange
(
200
))
d
.
append
(
d
)
fo
=
open
(
test_support
.
TESTFN
,
"wb"
)
try
:
fo
=
open
(
test_support
.
TESTFN
,
"wb"
)
print
>>
fo
,
d
,
fo
.
close
()
fo
=
open
(
test_support
.
TESTFN
,
"rb"
)
self
.
assertEqual
(
fo
.
read
(),
repr
(
d
))
finally
:
fo
.
close
()
os
.
remove
(
test_support
.
TESTFN
)
test_support
.
unlink
(
test_support
.
TESTFN
)
def
test_init
(
self
):
self
.
assertRaises
(
TypeError
,
deque
,
'abc'
,
2
,
3
);
...
...
Lib/test/test_uu.py
Dosyayı görüntüle @
40f5e4c5
...
...
@@ -112,6 +112,7 @@ class UUFileTest(unittest.TestCase):
del
self
.
tmpout
def
test_encode
(
self
):
fin
=
fout
=
None
try
:
fin
=
open
(
self
.
tmpin
,
'wb'
)
fin
.
write
(
plaintext
)
...
...
@@ -140,6 +141,7 @@ class UUFileTest(unittest.TestCase):
self
.
_kill
(
fout
)
def
test_decode
(
self
):
f
=
None
try
:
f
=
open
(
self
.
tmpin
,
'w'
)
f
.
write
(
encodedtextwrapped
%
(
0644
,
self
.
tmpout
))
...
...
@@ -159,6 +161,7 @@ class UUFileTest(unittest.TestCase):
def
test_decodetwice
(
self
):
# Verify that decode() will refuse to overwrite an existing file
f
=
None
try
:
f
=
cStringIO
.
StringIO
(
encodedtextwrapped
%
(
0644
,
self
.
tmpout
))
...
...
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