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
3269cc8b
Kaydet (Commit)
3269cc8b
authored
Tem 13, 2001
tarafından
Kurt B. Kaiser
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
py-cvs-rel2_1 (Rev 1.6 - 1.8) merge
Fix autoindent bug and deflect Unicode from text.get()
üst
48b03144
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
23 additions
and
4 deletions
+23
-4
PyParse.py
Lib/idlelib/PyParse.py
+23
-4
No files found.
Lib/idlelib/PyParse.py
Dosyayı görüntüle @
3269cc8b
...
...
@@ -105,6 +105,11 @@ for ch in "\"'\\\n#":
_tran
=
string
.
join
(
_tran
,
''
)
del
ch
try
:
UnicodeType
=
type
(
unicode
(
""
))
except
NameError
:
UnicodeType
=
None
class
Parser
:
def
__init__
(
self
,
indentwidth
,
tabwidth
):
...
...
@@ -113,6 +118,19 @@ class Parser:
def
set_str
(
self
,
str
):
assert
len
(
str
)
==
0
or
str
[
-
1
]
==
'
\n
'
if
type
(
str
)
is
UnicodeType
:
# The parse functions have no idea what to do with Unicode, so
# replace all Unicode characters with "x". This is "safe"
# so long as the only characters germane to parsing the structure
# of Python are 7-bit ASCII. It's *necessary* because Unicode
# strings don't have a .translate() method that supports
# deletechars.
uniphooey
=
str
str
=
[]
push
=
str
.
append
for
raw
in
map
(
ord
,
uniphooey
):
push
(
raw
<
127
and
chr
(
raw
)
or
"x"
)
str
=
""
.
join
(
str
)
self
.
str
=
str
self
.
study_level
=
0
...
...
@@ -385,13 +403,14 @@ class Parser:
m
=
_chew_ordinaryre
(
str
,
p
,
q
)
if
m
:
# we skipped at least one boring char
p
=
m
.
end
()
new
p
=
m
.
end
()
# back up over totally boring whitespace
i
=
p
-
1
# index of last boring char
while
i
>=
0
and
str
[
i
]
in
"
\t\n
"
:
i
=
newp
-
1
# index of last boring char
while
i
>=
p
and
str
[
i
]
in
"
\t\n
"
:
i
=
i
-
1
if
i
>=
0
:
if
i
>=
p
:
lastch
=
str
[
i
]
p
=
newp
if
p
>=
q
:
break
...
...
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