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
8e43cd79
Kaydet (Commit)
8e43cd79
authored
Şub 28, 2001
tarafından
Jeremy Hylton
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
verify that warnings are issued for bogus uses of global
üst
ff443a51
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
44 additions
and
0 deletions
+44
-0
test_global
Lib/test/output/test_global
+4
-0
test_global.py
Lib/test/test_global.py
+40
-0
No files found.
Lib/test/output/test_global
0 → 100644
Dosyayı görüntüle @
8e43cd79
test_global
got SyntaxWarning as expected
got SyntaxWarning as expected
got SyntaxWarning as expected
Lib/test/test_global.py
0 → 100644
Dosyayı görüntüle @
8e43cd79
"""Verify that warnings are issued for global statements following use"""
from
test_support
import
check_syntax
import
warnings
warnings
.
filterwarnings
(
"error"
,
category
=
SyntaxWarning
,
module
=
__name__
)
def
compile_and_catch_warning
(
text
):
try
:
compile
(
text
,
"<test code>"
,
"exec"
)
except
SyntaxWarning
,
msg
:
print
"got SyntaxWarning as expected"
else
:
print
"expected SyntaxWarning"
prog_text_1
=
"""
def wrong1():
a = 1
b = 2
global a
global b
"""
compile_and_catch_warning
(
prog_text_1
)
prog_text_2
=
"""
def wrong2():
print x
global x
"""
compile_and_catch_warning
(
prog_text_2
)
prog_text_3
=
"""
def wrong3():
print x
x = 2
global x
"""
compile_and_catch_warning
(
prog_text_3
)
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