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
047e2c93
Kaydet (Commit)
047e2c93
authored
Ock 19, 2001
tarafından
Jeremy Hylton
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
add test for SyntaxError on
def f(a): global a
üst
c862cf40
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
1 deletion
+7
-1
test_compile.py
Lib/test/test_compile.py
+7
-1
No files found.
Lib/test/test_compile.py
Dosyayı görüntüle @
047e2c93
from
test_support
import
verbose
,
TestFailed
if
verbose
:
print
'Running test
on duplicate arguments
'
print
'Running test
s on argument handling
'
try
:
exec
(
'def f(a, a): pass'
)
...
...
@@ -14,3 +14,9 @@ try:
raise
TestFailed
,
"duplicate keyword arguments"
except
SyntaxError
:
pass
try
:
exec
(
'def f(a): global a; a = 1'
)
raise
TestFailed
,
"variable is global and local"
except
SyntaxError
:
pass
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