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
b1f1c5ea
Kaydet (Commit)
b1f1c5ea
authored
Eki 27, 2015
tarafından
Terry Jan Reedy
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Sade Fark
Merge with 3.4
üst
084b3688
4c973e9a
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
3 deletions
+5
-3
EditorWindow.py
Lib/idlelib/EditorWindow.py
+5
-3
No files found.
Lib/idlelib/EditorWindow.py
Dosyayı görüntüle @
b1f1c5ea
...
@@ -887,9 +887,11 @@ class EditorWindow(object):
...
@@ -887,9 +887,11 @@ class EditorWindow(object):
except
OSError
as
err
:
except
OSError
as
err
:
if
not
getattr
(
self
.
root
,
"recentfilelist_error_displayed"
,
False
):
if
not
getattr
(
self
.
root
,
"recentfilelist_error_displayed"
,
False
):
self
.
root
.
recentfilelist_error_displayed
=
True
self
.
root
.
recentfilelist_error_displayed
=
True
tkMessageBox
.
showerror
(
title
=
'IDLE Error'
,
tkMessageBox
.
showwarning
(
title
=
'IDLE Warning'
,
message
=
'Unable to update Recent Files list:
\n
%
s'
message
=
"Cannot update File menu Recent Files list. "
%
str
(
err
),
"Your operating system says:
\n
%
s
\n
"
"Select OK and IDLE will continue without updating."
%
self
.
_filename_to_unicode
(
str
(
err
)),
parent
=
self
.
text
)
parent
=
self
.
text
)
# 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
:
for
instance
in
self
.
top
.
instance_dict
:
...
...
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