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
4687cf79
Kaydet (Commit)
4687cf79
authored
Nis 07, 2013
tarafından
Roger Serwy
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Sade Fark
#1207589: merge with 3.3.
üst
299978df
6b2918ae
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
2 deletions
+10
-2
EditorWindow.py
Lib/idlelib/EditorWindow.py
+8
-2
NEWS
Misc/NEWS
+2
-0
No files found.
Lib/idlelib/EditorWindow.py
Dosyayı görüntüle @
4687cf79
...
...
@@ -479,7 +479,12 @@ class EditorWindow(object):
if
iswin
:
self
.
text
.
config
(
cursor
=
"arrow"
)
for
label
,
eventname
,
verify_state
in
self
.
rmenu_specs
:
for
item
in
self
.
rmenu_specs
:
try
:
label
,
eventname
,
verify_state
=
item
except
ValueError
:
# see issue1207589
continue
if
verify_state
is
None
:
continue
state
=
getattr
(
self
,
verify_state
)()
...
...
@@ -497,7 +502,8 @@ class EditorWindow(object):
def
make_rmenu
(
self
):
rmenu
=
Menu
(
self
.
text
,
tearoff
=
0
)
for
label
,
eventname
,
_
in
self
.
rmenu_specs
:
for
item
in
self
.
rmenu_specs
:
label
,
eventname
=
item
[
0
],
item
[
1
]
if
label
is
not
None
:
def
command
(
text
=
self
.
text
,
eventname
=
eventname
):
text
.
event_generate
(
eventname
)
...
...
Misc/NEWS
Dosyayı görüntüle @
4687cf79
...
...
@@ -1015,6 +1015,8 @@ _ Issue #17385: Fix quadratic behavior in threading.Condition. The FIFO
IDLE
----
- Issue #1207589: Backwards-compatibility patch for right-click menu in IDLE.
- Issue #16887: IDLE now accepts Cancel in tabify/untabify dialog box.
- Issue #14254: IDLE now handles readline correctly across shell restarts.
...
...
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