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
51b1c1c1
Kaydet (Commit)
51b1c1c1
authored
Mar 04, 1995
tarafından
Guido van Rossum
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
avoid math, don't abort when overflow check fails
üst
1dba24ee
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
4 deletions
+9
-4
test_b1.py
Lib/test/test_b1.py
+5
-1
test_grammar.py
Lib/test/test_grammar.py
+4
-3
No files found.
Lib/test/test_b1.py
Dosyayı görüntüle @
51b1c1c1
...
...
@@ -224,7 +224,11 @@ if map(None, range(10)) <> [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]:
raise
TestFailed
,
'map(None, range(10))'
if
map
(
lambda
x
:
x
*
x
,
range
(
1
,
4
))
<>
[
1
,
4
,
9
]:
raise
TestFailed
,
'map(lambda x: x*x, range(1,4))'
from
math
import
sqrt
try
:
from
math
import
sqrt
except
ImportError
:
def
sqrt
(
x
):
return
pow
(
x
,
0.5
)
if
map
(
lambda
x
:
map
(
sqrt
,
x
),
[[
16
,
4
],
[
81
,
9
]])
<>
[[
4.0
,
2.0
],
[
9.0
,
3.0
]]:
raise
TestFailed
,
'map(lambda x: map(sqrt,x), [[16, 4], [81, 9]])'
if
map
(
lambda
x
,
y
:
x
+
y
,
[
1
,
3
,
2
],
[
9
,
1
,
4
])
<>
[
10
,
4
,
6
]:
...
...
Lib/test/test_grammar.py
Dosyayı görüntüle @
51b1c1c1
...
...
@@ -38,7 +38,8 @@ if maxint == 2147483647:
x
=
eval
(
s
)
except
OverflowError
:
continue
raise
TestFailed
,
\
## raise TestFailed, \
print
\
'No OverflowError on huge integer literal '
+
`s`
elif
eval
(
'maxint == 9223372036854775807'
):
if
eval
(
'-9223372036854775807-1 != 01000000000000000000000'
):
...
...
@@ -260,10 +261,10 @@ except KeyboardInterrupt: pass
print
'import_stmt'
# 'import' NAME (',' NAME)* | 'from' NAME 'import' ('*' | NAME (',' NAME)*)
import
sys
import
time
,
math
import
time
,
sys
from
time
import
time
from
sys
import
*
from
math
import
sin
,
cos
from
sys
import
path
,
argv
print
'global_stmt'
# 'global' NAME (',' NAME)*
def
f
():
...
...
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