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
935ea9a0
Kaydet (Commit)
935ea9a0
authored
May 10, 2005
tarafından
Kurt B. Kaiser
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Improve subprocess link error notification
M NEWS.txt M PyShell.py M rpc.py
üst
77d08bcf
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
9 additions
and
3 deletions
+9
-3
NEWS.txt
Lib/idlelib/NEWS.txt
+2
-0
PyShell.py
Lib/idlelib/PyShell.py
+3
-0
rpc.py
Lib/idlelib/rpc.py
+4
-3
No files found.
Lib/idlelib/NEWS.txt
Dosyayı görüntüle @
935ea9a0
...
@@ -3,6 +3,8 @@ What's New in IDLE 1.2a0?
...
@@ -3,6 +3,8 @@ What's New in IDLE 1.2a0?
*Release date: XX-XXX-2005*
*Release date: XX-XXX-2005*
- Improve subprocess link error notification.
- run.py: use Queue's blocking feature instead of sleeping in the main
- run.py: use Queue's blocking feature instead of sleeping in the main
loop. Patch # 1190163 Michiel de Hoon
loop. Patch # 1190163 Michiel de Hoon
...
...
Lib/idlelib/PyShell.py
Dosyayı görüntüle @
935ea9a0
...
@@ -596,6 +596,8 @@ class ModifiedInterpreter(InteractiveInterpreter):
...
@@ -596,6 +596,8 @@ class ModifiedInterpreter(InteractiveInterpreter):
self
.
write
(
"Unsupported characters in input"
)
self
.
write
(
"Unsupported characters in input"
)
return
return
try
:
try
:
# InteractiveInterpreter.runsource() calls its runcode() method,
# which is overridden (see below)
return
InteractiveInterpreter
.
runsource
(
self
,
source
,
filename
)
return
InteractiveInterpreter
.
runsource
(
self
,
source
,
filename
)
finally
:
finally
:
if
self
.
save_warnings_filters
is
not
None
:
if
self
.
save_warnings_filters
is
not
None
:
...
@@ -720,6 +722,7 @@ class ModifiedInterpreter(InteractiveInterpreter):
...
@@ -720,6 +722,7 @@ class ModifiedInterpreter(InteractiveInterpreter):
else
:
else
:
self
.
showtraceback
()
self
.
showtraceback
()
except
:
except
:
print
>>
sys
.
stderr
,
"IDLE internal error in runcode()"
self
.
showtraceback
()
self
.
showtraceback
()
finally
:
finally
:
if
not
use_subprocess
:
if
not
use_subprocess
:
...
...
Lib/idlelib/rpc.py
Dosyayı görüntüle @
935ea9a0
...
@@ -330,9 +330,10 @@ class SocketIO(object):
...
@@ -330,9 +330,10 @@ class SocketIO(object):
try
:
try
:
r
,
w
,
x
=
select
.
select
([],
[
self
.
sock
],
[])
r
,
w
,
x
=
select
.
select
([],
[
self
.
sock
],
[])
n
=
self
.
sock
.
send
(
s
[:
BUFSIZE
])
n
=
self
.
sock
.
send
(
s
[:
BUFSIZE
])
except
(
AttributeError
,
socket
.
error
):
except
(
AttributeError
,
TypeError
):
# socket was closed
raise
IOError
,
"socket no longer exists"
raise
IOError
except
socket
.
error
:
raise
else
:
else
:
s
=
s
[
n
:]
s
=
s
[
n
:]
...
...
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