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
0b634efc
Kaydet (Commit)
0b634efc
authored
Eki 04, 2007
tarafından
Kurt B. Kaiser
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Clean up EditorWindow close.
üst
85897c9b
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
19 additions
and
14 deletions
+19
-14
EditorWindow.py
Lib/idlelib/EditorWindow.py
+14
-13
FileList.py
Lib/idlelib/FileList.py
+1
-1
NEWS.txt
Lib/idlelib/NEWS.txt
+4
-0
No files found.
Lib/idlelib/EditorWindow.py
Dosyayı görüntüle @
0b634efc
...
...
@@ -560,7 +560,8 @@ class EditorWindow(object):
def
close_hook
(
self
):
if
self
.
flist
:
self
.
flist
.
close_edit
(
self
)
self
.
flist
.
unregister_maybe_terminate
(
self
)
self
.
flist
=
None
def
set_close_hook
(
self
,
close_hook
):
self
.
close_hook
=
close_hook
...
...
@@ -827,22 +828,21 @@ class EditorWindow(object):
if
self
.
io
.
filename
:
self
.
update_recent_files_list
(
new_file
=
self
.
io
.
filename
)
WindowList
.
unregister_callback
(
self
.
postwindowsmenu
)
if
self
.
close_hook
:
self
.
close_hook
()
self
.
flist
=
None
colorizing
=
0
self
.
unload_extensions
()
self
.
io
.
close
();
self
.
io
=
None
self
.
undo
=
None
# XXX
self
.
io
.
close
()
self
.
io
=
None
self
.
undo
=
None
if
self
.
color
:
colorizing
=
self
.
color
.
colorizing
doh
=
colorizing
and
self
.
top
self
.
color
.
close
(
doh
)
# Cancel colorization
self
.
color
.
close
(
False
)
self
.
color
=
None
self
.
text
=
None
self
.
tkinter_vars
=
None
self
.
per
.
close
();
self
.
per
=
None
if
not
colorizing
:
self
.
top
.
destroy
()
self
.
per
.
close
()
self
.
per
=
None
self
.
top
.
destroy
()
if
self
.
close_hook
:
# unless override: unregister from flist, terminate if last window
self
.
close_hook
()
def
load_extensions
(
self
):
self
.
extensions
=
{}
...
...
@@ -1504,6 +1504,7 @@ def test():
filename
=
None
edit
=
EditorWindow
(
root
=
root
,
filename
=
filename
)
edit
.
set_close_hook
(
root
.
quit
)
edit
.
text
.
bind
(
"<<close-all-windows>>"
,
edit
.
close_event
)
root
.
mainloop
()
root
.
destroy
()
...
...
Lib/idlelib/FileList.py
Dosyayı görüntüle @
0b634efc
...
...
@@ -50,7 +50,7 @@ class FileList:
break
return
"break"
def
close_edit
(
self
,
edit
):
def
unregister_maybe_terminate
(
self
,
edit
):
try
:
key
=
self
.
inversedict
[
edit
]
except
KeyError
:
...
...
Lib/idlelib/NEWS.txt
Dosyayı görüntüle @
0b634efc
...
...
@@ -3,6 +3,8 @@ What's New in IDLE 2.6a1?
*Release date: XX-XXX-200X*
- Clean up EditorWindow close.
- Corrected some bugs in AutoComplete. Also, Page Up/Down in ACW implemented;
mouse and cursor selection in ACWindow implemented; double Tab inserts
current selection and closes ACW (similar to double-click and Return); scroll
...
...
@@ -24,6 +26,8 @@ What's New in IDLE 2.6a1?
- Bug #813342: Start the IDLE subprocess with -Qnew if the parent
is started with that option.
- Honor the "Cancel" action in the save dialog (Debian bug #299092)
- Some syntax errors were being caught by tokenize during the tabnanny
check, resulting in obscure error messages. Do the syntax check
first. Bug 1562716, 1562719
...
...
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