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
d8e20a0e
Kaydet (Commit)
d8e20a0e
authored
Eyl 17, 2002
tarafından
Kurt B. Kaiser
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Merge Py Idle changes:
Rev 1.6 doerwalter (string methods)
üst
7827e170
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
4 deletions
+2
-4
ParenMatch.py
Lib/idlelib/ParenMatch.py
+2
-4
No files found.
Lib/idlelib/ParenMatch.py
Dosyayı görüntüle @
d8e20a0e
...
...
@@ -10,8 +10,6 @@ We'll have to fix IDLE to do something reasonable when two or more
extensions what to capture the same event.
"""
import
string
import
PyParse
from
AutoIndent
import
AutoIndent
,
index2line
from
configHandler
import
idleConf
...
...
@@ -166,10 +164,10 @@ class LastOpenBracketFinder:
if
i
is
None
\
or
keysym_type
(
buf
[
i
])
!=
right_keysym_type
:
return
None
lines_back
=
string
.
count
(
buf
[
i
:],
"
\n
"
)
-
1
lines_back
=
buf
[
i
:]
.
count
(
"
\n
"
)
-
1
# subtract one for the "\n" added to please the parser
upto_open
=
buf
[:
i
]
j
=
string
.
rfind
(
upto_open
,
"
\n
"
)
+
1
# offset of column 0 of line
j
=
upto_open
.
rfind
(
"
\n
"
)
+
1
# offset of column 0 of line
offset
=
i
-
j
return
"
%
d.
%
d"
%
(
lno
-
lines_back
,
offset
)
...
...
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