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
a2792bec
Kaydet (Commit)
a2792bec
authored
May 17, 2003
tarafından
Kurt B. Kaiser
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Show Freddy the mirror
i.e. improve subprocess exit paths and exeception reporting
üst
74e67661
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
15 additions
and
7 deletions
+15
-7
run.py
Lib/idlelib/run.py
+15
-7
No files found.
Lib/idlelib/run.py
Dosyayı görüntüle @
a2792bec
...
...
@@ -53,7 +53,7 @@ def main():
while
1
:
try
:
if
exit_requested
:
os
.
_
exit
(
0
)
sys
.
exit
(
0
)
try
:
seq
,
request
=
rpc
.
request_queue
.
get
(
0
)
except
Queue
.
Empty
:
...
...
@@ -64,9 +64,15 @@ def main():
rpc
.
response_queue
.
put
((
seq
,
ret
))
except
KeyboardInterrupt
:
continue
except
SystemExit
:
raise
except
:
print_exception
()
rpc
.
response_queue
.
put
((
seq
,
None
))
try
:
print_exception
()
rpc
.
response_queue
.
put
((
seq
,
None
))
except
:
traceback
.
print_exc
(
file
=
sys
.
__stderr__
)
sys
.
exit
(
1.1
)
continue
def
manage_socket
(
address
):
...
...
@@ -207,13 +213,15 @@ class Executive:
try
:
exec
code
in
self
.
locals
except
:
if
exit_requested
:
sys
.
exit
(
0
)
try
:
if
exit_requested
:
os
.
_exit
(
0
)
# even print a user code SystemExit exception, continue
print_exception
()
except
:
sys
.
stderr
=
sys
.
__stderr__
raise
# link not working?
traceback
.
print_exc
(
file
=
sys
.
__stderr__
)
sys
.
exit
(
1.2
)
else
:
flush_stdout
()
...
...
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