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
eb2a5ef3
Kaydet (Commit)
eb2a5ef3
authored
Şub 18, 2003
tarafından
Neal Norwitz
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fix SF bug #688424, 64-bit test problems
üst
4edaa0d5
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
3 deletions
+8
-3
test_compile.py
Lib/test/test_compile.py
+7
-2
test_sys.py
Lib/test/test_sys.py
+1
-1
No files found.
Lib/test/test_compile.py
Dosyayı görüntüle @
eb2a5ef3
...
...
@@ -145,9 +145,14 @@ expect_same("000000000000009.", 9.)
# Verify treatment of unary minus on negative numbers SF bug #660455
import
warnings
warnings
.
filterwarnings
(
"ignore"
,
"hex/oct constants"
,
FutureWarning
)
warnings
.
filterwarnings
(
"ignore"
,
"hex.* of negative int"
,
FutureWarning
)
# XXX Of course the following test will have to be changed in Python 2.4
# This test is in a <string> so the filterwarnings() can affect it
import
sys
all_one_bits
=
'0xffffffff'
if
sys
.
maxint
!=
2147483647
:
all_one_bits
=
'0xffffffffffffffff'
exec
"""
expect_same(
"0xffffffff"
, -1)
expect_same("-
0xffffffff"
, 1)
expect_same(
all_one_bits
, -1)
expect_same("-
" + all_one_bits
, 1)
"""
Lib/test/test_sys.py
Dosyayı görüntüle @
eb2a5ef3
...
...
@@ -173,7 +173,7 @@ class SysModuleTest(unittest.TestCase):
def
test_getframe
(
self
):
self
.
assertRaises
(
TypeError
,
sys
.
_getframe
,
42
,
42
)
self
.
assertRaises
(
ValueError
,
sys
.
_getframe
,
sys
.
maxint
)
self
.
assertRaises
(
ValueError
,
sys
.
_getframe
,
2000000000
)
self
.
assert_
(
SysModuleTest
.
test_getframe
.
im_func
.
func_code
\
is
sys
.
_getframe
()
.
f_code
...
...
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