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
38fd069a
Kaydet (Commit)
38fd069a
authored
Şub 14, 2008
tarafından
Kurt B. Kaiser
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
There was an error on exit if no sys.exitfunc was defined. Issue 1647.
Backport r60227
üst
0b45f36c
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
1 deletion
+7
-1
NEWS.txt
Lib/idlelib/NEWS.txt
+3
-0
run.py
Lib/idlelib/run.py
+4
-1
No files found.
Lib/idlelib/NEWS.txt
Dosyayı görüntüle @
38fd069a
...
...
@@ -3,6 +3,9 @@ What's New in IDLE 1.2.2c1?
*Release date: XX-FEB-2008*
- There was an error on exit if no sys.exitfunc was defined. Issue 1647.
(backport r60227)
- Could not open files in .idlerc directory if latter was hidden on Windows.
Issue 1743, Issue 1862. (backport r60225, r60745)
...
...
Lib/idlelib/run.py
Dosyayı görüntüle @
38fd069a
...
...
@@ -205,7 +205,10 @@ def exit():
"""
if
no_exitfunc
:
del
sys
.
exitfunc
try
:
del
sys
.
exitfunc
except
AttributeError
:
pass
sys
.
exit
(
0
)
class
MyRPCServer
(
rpc
.
RPCServer
):
...
...
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