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
bed17101
Kaydet (Commit)
bed17101
authored
Kas 29, 2008
tarafından
Amaury Forgeot d'Arc
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fix more threading API related bugs: Thread.get_name() --> Thread.name.
Seen when setting RPCHandler.debugging=True
üst
47c2b607
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
3 deletions
+6
-3
rpc.py
Lib/idlelib/rpc.py
+2
-2
run.py
Lib/idlelib/run.py
+1
-1
NEWS
Misc/NEWS
+3
-0
No files found.
Lib/idlelib/rpc.py
Dosyayı görüntüle @
bed17101
...
...
@@ -106,7 +106,7 @@ class RPCServer(socketserver.TCPServer):
erf
=
sys
.
__stderr__
print
(
'
\n
'
+
'-'
*
40
,
file
=
erf
)
print
(
'Unhandled server exception!'
,
file
=
erf
)
print
(
'Thread:
%
s'
%
threading
.
current_thread
()
.
get_name
()
,
file
=
erf
)
print
(
'Thread:
%
s'
%
threading
.
current_thread
()
.
name
,
file
=
erf
)
print
(
'Client Address: '
,
client_address
,
file
=
erf
)
print
(
'Request: '
,
repr
(
request
),
file
=
erf
)
traceback
.
print_exc
(
file
=
erf
)
...
...
@@ -149,7 +149,7 @@ class SocketIO(object):
def
debug
(
self
,
*
args
):
if
not
self
.
debugging
:
return
s
=
self
.
location
+
" "
+
str
(
threading
.
current_thread
()
.
get_name
()
)
s
=
self
.
location
+
" "
+
str
(
threading
.
current_thread
()
.
name
)
for
a
in
args
:
s
=
s
+
" "
+
str
(
a
)
print
(
s
,
file
=
sys
.
__stderr__
)
...
...
Lib/idlelib/run.py
Dosyayı görüntüle @
bed17101
...
...
@@ -230,7 +230,7 @@ class MyRPCServer(rpc.RPCServer):
erf
=
sys
.
__stderr__
print
(
'
\n
'
+
'-'
*
40
,
file
=
erf
)
print
(
'Unhandled server exception!'
,
file
=
erf
)
print
(
'Thread:
%
s'
%
threading
.
current_thread
()
.
get_name
()
,
file
=
erf
)
print
(
'Thread:
%
s'
%
threading
.
current_thread
()
.
name
,
file
=
erf
)
print
(
'Client Address: '
,
client_address
,
file
=
erf
)
print
(
'Request: '
,
repr
(
request
),
file
=
erf
)
traceback
.
print_exc
(
file
=
erf
)
...
...
Misc/NEWS
Dosyayı görüntüle @
bed17101
...
...
@@ -24,6 +24,9 @@ Core and Builtins
Library
-------
- IDLE would print a "Unhandled server exception!" message when internal
debugging is enabled.
- Issue #4455: IDLE failed to display the windows list when two windows have
the same title.
...
...
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