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
42d90161
Kaydet (Commit)
42d90161
authored
Tem 15, 2003
tarafından
Jeremy Hylton
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
SF patch 763201: handling of SyntaxErrors in symbol table build
Bug fix candidate.
üst
1955fcf6
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
30 additions
and
3 deletions
+30
-3
test_symtable.py
Lib/test/test_symtable.py
+15
-3
test_syntax.py
Lib/test/test_syntax.py
+15
-0
No files found.
Lib/test/test_symtable.py
Dosyayı görüntüle @
42d90161
from
test.test_support
import
ver
ify
from
test.test_support
import
ver
eq
,
TestFailed
import
_symtable
symbols
=
_symtable
.
symtable
(
"def f(x): return x"
,
"?"
,
"exec"
)
verify
(
symbols
[
0
]
.
name
==
"global"
)
verify
(
len
([
ste
for
ste
in
symbols
.
values
()
if
ste
.
name
==
"f"
])
==
1
)
vereq
(
symbols
[
0
]
.
name
,
"global"
)
vereq
(
len
([
ste
for
ste
in
symbols
.
values
()
if
ste
.
name
==
"f"
]),
1
)
# Bug tickler: SyntaxError file name correct whether error raised
# while parsing or building symbol table.
def
checkfilename
(
brokencode
):
try
:
_symtable
.
symtable
(
brokencode
,
"spam"
,
"exec"
)
except
SyntaxError
,
e
:
vereq
(
e
.
filename
,
"spam"
)
else
:
raise
TestFailed
(
"no SyntaxError for
%
r"
%
(
brokencode
,))
checkfilename
(
"def f(x): foo)("
)
# parse-time
checkfilename
(
"def f(x): global x"
)
# symtable-build-time
Lib/test/test_syntax.py
Dosyayı görüntüle @
42d90161
import
re
import
unittest
import
warnings
from
test
import
test_support
...
...
@@ -27,6 +28,20 @@ class SyntaxTestCase(unittest.TestCase):
def
test_assign_del
(
self
):
self
.
_check_error
(
"del f()"
,
"delete"
)
def
test_global_err_then_warn
(
self
):
# Bug tickler: The SyntaxError raised for one global statement
# shouldn't be clobbered by a SyntaxWarning issued for a later one.
source
=
re
.
sub
(
'(?m)^ *:'
,
''
,
"""
\
:def error(a):
: global a # SyntaxError
:def warning():
: b = 1
: global b # SyntaxWarning
:"""
)
warnings
.
filterwarnings
(
action
=
'ignore'
,
category
=
SyntaxWarning
)
self
.
_check_error
(
source
,
"global"
)
warnings
.
filters
.
pop
(
0
)
def
test_main
():
test_support
.
run_unittest
(
SyntaxTestCase
)
...
...
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