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
df8a303d
Kaydet (Commit)
df8a303d
authored
Şub 06, 2010
tarafından
Georg Brandl
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fix a few UnboundLocalErrors in test_long.
üst
8fd107f8
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
4 deletions
+3
-4
test_long.py
Lib/test/test_long.py
+3
-4
No files found.
Lib/test/test_long.py
Dosyayı görüntüle @
df8a303d
...
...
@@ -536,7 +536,7 @@ class LongTest(unittest.TestCase):
except
OverflowError
:
self
.
fail
(
"int(long(sys.maxint)) overflowed!"
)
if
not
isinstance
(
x
,
int
):
raise
TestFailed
(
"int(long(sys.maxint)) should have returned int"
)
self
.
fail
(
"int(long(sys.maxint)) should have returned int"
)
x
=
int
(
hugeneg_aslong
)
try
:
self
.
assertEqual
(
x
,
hugeneg
,
...
...
@@ -544,8 +544,7 @@ class LongTest(unittest.TestCase):
except
OverflowError
:
self
.
fail
(
"int(long(-sys.maxint-1)) overflowed!"
)
if
not
isinstance
(
x
,
int
):
raise
TestFailed
(
"int(long(-sys.maxint-1)) should have "
"returned int"
)
self
.
fail
(
"int(long(-sys.maxint-1)) should have returned int"
)
# but long -> int should overflow for hugepos+1 and hugeneg-1
x
=
hugepos_aslong
+
1
try
:
...
...
@@ -803,7 +802,7 @@ class LongTest(unittest.TestCase):
self
.
d
=
d
assert
float
(
n
)
/
float
(
d
)
==
value
else
:
raise
TypeError
(
"can't deal with
%
r"
%
val
)
raise
TypeError
(
"can't deal with
%
r"
%
val
ue
)
def
__cmp__
(
self
,
other
):
if
not
isinstance
(
other
,
Rat
):
...
...
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