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
da99d1cb
Kaydet (Commit)
da99d1cb
authored
Haz 21, 2005
tarafından
Raymond Hettinger
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
SF bug #1224621: tokenize module does not detect inconsistent dedents
üst
8fa7eb56
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
25 additions
and
1 deletion
+25
-1
test_tokenize.py
Lib/test/test_tokenize.py
+19
-1
tokenize.py
Lib/tokenize.py
+3
-0
NEWS
Misc/NEWS
+3
-0
No files found.
Lib/test/test_tokenize.py
Dosyayı görüntüle @
da99d1cb
from
test.test_support
import
verbose
,
findfile
,
is_resource_enabled
from
test.test_support
import
verbose
,
findfile
,
is_resource_enabled
,
TestFailed
import
os
,
glob
,
random
from
tokenize
import
(
tokenize
,
generate_tokens
,
untokenize
,
NUMBER
,
NAME
,
OP
,
STRING
)
...
...
@@ -41,6 +41,24 @@ for f in testfiles:
test_roundtrip
(
f
)
###### Test detecton of IndentationError ######################
from
cStringIO
import
StringIO
sampleBadText
=
"""
def foo():
bar
baz
"""
try
:
for
tok
in
generate_tokens
(
StringIO
(
sampleBadText
)
.
readline
):
pass
except
IndentationError
:
pass
else
:
raise
TestFailed
(
"Did not detect IndentationError:"
)
###### Test example in the docs ###############################
...
...
Lib/tokenize.py
Dosyayı görüntüle @
da99d1cb
...
...
@@ -271,6 +271,9 @@ def generate_tokens(readline):
indents
.
append
(
column
)
yield
(
INDENT
,
line
[:
pos
],
(
lnum
,
0
),
(
lnum
,
pos
),
line
)
while
column
<
indents
[
-
1
]:
if
column
not
in
indents
:
raise
IndentationError
(
"unindent does not match any outer indentation level"
)
indents
=
indents
[:
-
1
]
yield
(
DEDENT
,
''
,
(
lnum
,
pos
),
(
lnum
,
pos
),
line
)
...
...
Misc/NEWS
Dosyayı görüntüle @
da99d1cb
...
...
@@ -147,6 +147,9 @@ Extension Modules
Library
-------
-
The
tokenize
module
now
detects
and
reports
indentation
errors
.
Bug
#
1224621.
-
The
tokenize
module
has
a
new
untokenize
()
function
to
support
a
full
roundtrip
from
lexed
tokens
back
to
Python
sourcecode
.
In
addition
,
the
generate_tokens
()
function
now
accepts
a
callable
argument
that
...
...
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