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
2fbad0e9
Kaydet (Commit)
2fbad0e9
authored
Şub 14, 2008
tarafından
Kurt B. Kaiser
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Assume that the user knows when he wants to end the line; don't insert
something he didn't select or complete. Backport r58306
üst
60d9f8df
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
15 deletions
+4
-15
AutoComplete.py
Lib/idlelib/AutoComplete.py
+1
-1
AutoCompleteWindow.py
Lib/idlelib/AutoCompleteWindow.py
+3
-14
No files found.
Lib/idlelib/AutoComplete.py
Dosyayı görüntüle @
2fbad0e9
...
...
@@ -27,7 +27,7 @@ class AutoComplete:
menudefs
=
[
(
'edit'
,
[
(
"Show
c
ompletions"
,
"<<force-open-completions>>"
),
(
"Show
C
ompletions"
,
"<<force-open-completions>>"
),
])
]
...
...
Lib/idlelib/AutoCompleteWindow.py
Dosyayı görüntüle @
2fbad0e9
...
...
@@ -274,20 +274,9 @@ class AutoCompleteWindow:
self
.
_selection_changed
()
return
"break"
elif
keysym
==
"Return"
and
not
state
:
# If start is a prefix of the selection, or there was an indication
# that the user used the completion window, put the selected
# completion in the text, and close the list.
# Otherwise, close the window and let the event through.
cursel
=
int
(
self
.
listbox
.
curselection
()[
0
])
if
self
.
completions
[
cursel
][:
len
(
self
.
start
)]
==
self
.
start
or
\
self
.
userwantswindow
:
self
.
_change_start
(
self
.
completions
[
cursel
])
self
.
hide_window
()
return
"break"
else
:
self
.
hide_window
()
return
elif
keysym
==
"Return"
:
self
.
hide_window
()
return
elif
(
self
.
mode
==
AutoComplete
.
COMPLETE_ATTRIBUTES
and
keysym
in
(
"period"
,
"space"
,
"parenleft"
,
"parenright"
,
"bracketleft"
,
...
...
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