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
e411b662
Kaydet (Commit)
e411b662
authored
Haz 22, 2015
tarafından
Dingyuan Wang
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #20387: Restore retention of indentation during untokenize.
üst
b6d1cdda
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
17 additions
and
0 deletions
+17
-0
tokenize.py
Lib/tokenize.py
+17
-0
No files found.
Lib/tokenize.py
Dosyayı görüntüle @
e411b662
...
...
@@ -244,6 +244,8 @@ class Untokenizer:
def
untokenize
(
self
,
iterable
):
it
=
iter
(
iterable
)
indents
=
[]
startline
=
False
for
t
in
it
:
if
len
(
t
)
==
2
:
self
.
compat
(
t
,
it
)
...
...
@@ -254,6 +256,21 @@ class Untokenizer:
continue
if
tok_type
==
ENDMARKER
:
break
if
tok_type
==
INDENT
:
indents
.
append
(
token
)
continue
elif
tok_type
==
DEDENT
:
indents
.
pop
()
self
.
prev_row
,
self
.
prev_col
=
end
continue
elif
tok_type
in
(
NEWLINE
,
NL
):
startline
=
True
elif
startline
and
indents
:
indent
=
indents
[
-
1
]
if
start
[
1
]
>=
len
(
indent
):
self
.
tokens
.
append
(
indent
)
self
.
prev_col
=
len
(
indent
)
startline
=
False
self
.
add_whitespace
(
start
)
self
.
tokens
.
append
(
token
)
self
.
prev_row
,
self
.
prev_col
=
end
...
...
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