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
094189f1
Kaydet (Commit)
094189f1
authored
Haz 02, 1999
tarafından
Guido van Rossum
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
My fix to Mark's code: restore the universal check on <KeyRelease>.
Always cancel on <Key-Escape> or <ButtonPress>.
üst
6290dabd
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
14 deletions
+2
-14
CallTips.py
Tools/idle/CallTips.py
+2
-14
No files found.
Tools/idle/CallTips.py
Dosyayı görüntüle @
094189f1
...
...
@@ -2,18 +2,6 @@ import string
import
sys
import
types
# These keys check if cancellation is nesessary.
_check_cancel_keys
=
[
"Left"
,
"Right"
]
# These keys (with the modifiers) call cancel unconditionally.
_cancel_keys_base
=
[
"Up"
,
"Down"
,
"Next"
,
"Prior"
,
"Home"
]
_cancel_keys_modifiers
=
[
'Key-'
,
'Control-'
,
'Shift-'
,
'Control-Shift-'
]
_cancel_keys
=
[]
for
key
in
_cancel_keys_base
:
for
mod
in
_cancel_keys_modifiers
:
_cancel_keys
.
append
(
mod
+
key
)
class
CallTips
:
menudefs
=
[
...
...
@@ -22,8 +10,8 @@ class CallTips:
keydefs
=
{
'<<paren-open>>'
:
[
'<Key-parenleft>'
],
'<<paren-close>>'
:
[
'<Key-parenright>'
],
'<<check-calltip-cancel>>'
:
map
(
lambda
key
:
"<Key-
%
s>"
%
key
,
_check_cancel_keys
)
,
'<<calltip-cancel>>'
:
map
(
lambda
key
:
"<
%
s>"
%
key
,
_cancel_keys
)
,
'<<check-calltip-cancel>>'
:
[
'<KeyRelease>'
]
,
'<<calltip-cancel>>'
:
[
'<ButtonPress>'
,
'<Key-Escape>'
]
,
}
windows_keydefs
=
{
...
...
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