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
10fb3863
Kaydet (Commit)
10fb3863
authored
Şub 09, 2001
tarafından
Tim Peters
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Whitespace normalization.
üst
658cba67
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
11 additions
and
13 deletions
+11
-13
test_funcattrs.py
Lib/test/test_funcattrs.py
+3
-4
test_grammar.py
Lib/test/test_grammar.py
+1
-1
test_new.py
Lib/test/test_new.py
+2
-2
test_scope.py
Lib/test/test_scope.py
+5
-6
No files found.
Lib/test/test_funcattrs.py
Dosyayı görüntüle @
10fb3863
...
...
@@ -156,13 +156,13 @@ else: raise TestFailed
del
another
.
func_defaults
def
foo
():
pass
pass
def
bar
():
pass
pass
def
temp
():
print
1
print
1
if
foo
==
bar
:
raise
TestFailed
...
...
@@ -172,4 +172,3 @@ d[foo] = 1
foo
.
func_code
=
temp
.
func_code
d
[
foo
]
Lib/test/test_grammar.py
Dosyayı görüntüle @
10fb3863
...
...
@@ -367,7 +367,7 @@ while not msg:
finally
:
msg
=
"continue + try/finally ok"
print
msg
print
'return_stmt'
# 'return' [testlist]
def
g1
():
return
def
g2
():
return
1
...
...
Lib/test/test_new.py
Dosyayı görüntüle @
10fb3863
...
...
@@ -66,10 +66,10 @@ verify(g['c'] == 3,
# bogus test of new.code()
print
'new.code()'
d
=
new
.
code
(
3
,
3
,
3
,
3
,
codestr
,
(),
(),
(),
d
=
new
.
code
(
3
,
3
,
3
,
3
,
codestr
,
(),
(),
(),
"<string>"
,
"<name>"
,
1
,
""
,
(),
())
# test backwards-compatibility version with no freevars or cellvars
d
=
new
.
code
(
3
,
3
,
3
,
3
,
codestr
,
(),
(),
(),
d
=
new
.
code
(
3
,
3
,
3
,
3
,
codestr
,
(),
(),
(),
"<string>"
,
"<name>"
,
1
,
""
)
if
verbose
:
print
d
Lib/test/test_scope.py
Dosyayı görüntüle @
10fb3863
...
...
@@ -105,14 +105,14 @@ verify(test_func(5) == 47)
print
"8. mixed freevars and cellvars"
def
identity
(
x
):
return
x
return
x
def
f
(
x
,
y
,
z
):
def
g
(
a
,
b
,
c
):
a
=
a
+
x
# 3
def
h
():
# z * (4 + 9)
# 3 * 13
# z * (4 + 9)
# 3 * 13
return
identity
(
z
*
(
b
+
y
))
y
=
c
+
z
# 9
return
h
...
...
@@ -120,7 +120,7 @@ def f(x, y, z):
g
=
f
(
1
,
2
,
3
)
h
=
g
(
2
,
4
,
6
)
verify
(
h
()
==
39
)
verify
(
h
()
==
39
)
print
"9. free variable in method"
...
...
@@ -206,7 +206,7 @@ test2 = \
"""
# check_syntax(test2)
# XXX could allow this for exec with const argument, but what's the point
# XXX could allow this for exec with const argument, but what's the point
test3
=
\
"""def error(y):
exec "a = 1"
...
...
@@ -275,4 +275,3 @@ except UnboundLocalError:
pass
else
:
raise
TestFailed
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