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
7148984d
Kaydet (Commit)
7148984d
authored
May 29, 2012
tarafından
Ned Deily
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #10997: Prevent a duplicate entry in IDLE's "Recent Files" menu.
üst
ff0e22b6
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
1 deletion
+3
-1
EditorWindow.py
Lib/idlelib/EditorWindow.py
+1
-1
NEWS
Misc/NEWS
+2
-0
No files found.
Lib/idlelib/EditorWindow.py
Dosyayı görüntüle @
7148984d
...
@@ -856,7 +856,7 @@ class EditorWindow(object):
...
@@ -856,7 +856,7 @@ class EditorWindow(object):
# for each edit window instance, construct the recent files menu
# for each edit window instance, construct the recent files menu
for
instance
in
self
.
top
.
instance_dict
.
keys
():
for
instance
in
self
.
top
.
instance_dict
.
keys
():
menu
=
instance
.
recent_files_menu
menu
=
instance
.
recent_files_menu
menu
.
delete
(
1
,
END
)
# clear, and rebuild:
menu
.
delete
(
0
,
END
)
# clear, and rebuild:
for
i
,
file_name
in
enumerate
(
rf_list
):
for
i
,
file_name
in
enumerate
(
rf_list
):
file_name
=
file_name
.
rstrip
()
# zap \n
file_name
=
file_name
.
rstrip
()
# zap \n
# make unicode string to display non-ASCII chars correctly
# make unicode string to display non-ASCII chars correctly
...
...
Misc/NEWS
Dosyayı görüntüle @
7148984d
...
@@ -67,6 +67,8 @@ Core and Builtins
...
@@ -67,6 +67,8 @@ Core and Builtins
Library
Library
-------
-------
-
Issue
#
10997
:
Prevent
a
duplicate
entry
in
IDLE
's "Recent Files" menu.
- Issue12510: Attempting to get invalid tooltip no longer closes Idle.
- Issue12510: Attempting to get invalid tooltip no longer closes Idle.
Original patch by Roger Serwy.
Original patch by Roger Serwy.
...
...
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