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
4d9620a6
Kaydet (Commit)
4d9620a6
authored
Agu 22, 2007
tarafından
Kurt B. Kaiser
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fix bug introduced at r54854 to mass replace string fcns with methods :-)
üst
0e6012cb
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
4 deletions
+1
-4
MultiCall.py
Lib/idlelib/MultiCall.py
+1
-4
No files found.
Lib/idlelib/MultiCall.py
Dosyayı görüntüle @
4d9620a6
...
@@ -257,19 +257,16 @@ def _parse_sequence(sequence):
...
@@ -257,19 +257,16 @@ def _parse_sequence(sequence):
"""
"""
if
not
sequence
or
sequence
[
0
]
!=
'<'
or
sequence
[
-
1
]
!=
'>'
:
if
not
sequence
or
sequence
[
0
]
!=
'<'
or
sequence
[
-
1
]
!=
'>'
:
return
None
return
None
words
=
'-'
.
split
(
sequence
[
1
:
-
1
])
words
=
sequence
[
1
:
-
1
]
.
split
(
'-'
)
modifiers
=
0
modifiers
=
0
while
words
and
words
[
0
]
in
_modifier_names
:
while
words
and
words
[
0
]
in
_modifier_names
:
modifiers
|=
1
<<
_modifier_names
[
words
[
0
]]
modifiers
|=
1
<<
_modifier_names
[
words
[
0
]]
del
words
[
0
]
del
words
[
0
]
if
words
and
words
[
0
]
in
_type_names
:
if
words
and
words
[
0
]
in
_type_names
:
type
=
_type_names
[
words
[
0
]]
type
=
_type_names
[
words
[
0
]]
del
words
[
0
]
del
words
[
0
]
else
:
else
:
return
None
return
None
if
_binder_classes
[
type
]
is
_SimpleBinder
:
if
_binder_classes
[
type
]
is
_SimpleBinder
:
if
modifiers
or
words
:
if
modifiers
or
words
:
return
None
return
None
...
...
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