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
de602487
Kaydet (Commit)
de602487
authored
Şub 05, 2001
tarafından
Jeremy Hylton
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fix test 9 (caught by ?!ng)
Add tests for unbound locals (Nick Mathewson)
üst
2524d699
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
31 additions
and
1 deletion
+31
-1
test_scope
Lib/test/output/test_scope
+1
-0
test_scope.py
Lib/test/test_scope.py
+30
-1
No files found.
Lib/test/output/test_scope
Dosyayı görüntüle @
de602487
...
...
@@ -11,3 +11,4 @@ test_scope
10. recursion
11. unoptimized namespaces
12. lambdas
13. UnboundLocal
Lib/test/test_scope.py
Dosyayı görüntüle @
de602487
...
...
@@ -154,7 +154,7 @@ class Test:
def
str
(
self
):
return
str
(
self
)
t
=
t
est
()
t
=
T
est
()
verify
(
t
.
test
()
==
"var"
)
verify
(
t
.
method_and_var
()
==
"method"
)
verify
(
t
.
actual_global
()
==
"global"
)
...
...
@@ -247,3 +247,32 @@ f8 = lambda x, y, z: lambda a, b, c: lambda : z * (b + y)
g
=
f8
(
1
,
2
,
3
)
h
=
g
(
2
,
4
,
6
)
verify
(
h
()
==
18
)
print
"13. UnboundLocal"
def
errorInOuter
():
print
y
def
inner
():
return
y
y
=
1
def
errorInInner
():
def
inner
():
return
y
inner
()
y
=
1
try
:
errorInOuter
()
except
UnboundLocalError
:
pass
else
:
raise
TestFailed
try
:
errorInInner
()
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