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
b6a95567
Kaydet (Commit)
b6a95567
authored
Agu 22, 2008
tarafından
Benjamin Peterson
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
fix a few get_name() calls and turn then to .name
Reviewer: Christian Heimes
üst
1cc69636
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
threading.py
Lib/threading.py
+4
-4
No files found.
Lib/threading.py
Dosyayı görüntüle @
b6a95567
...
...
@@ -67,7 +67,7 @@ if __debug__:
if
self
.
__verbose
:
format
=
format
%
args
format
=
"
%
s:
%
s
\n
"
%
(
current_thread
()
.
get_name
()
,
format
)
current_thread
()
.
name
,
format
)
_sys
.
stderr
.
write
(
format
)
else
:
...
...
@@ -110,7 +110,7 @@ class _RLock(_Verbose):
owner
=
self
.
__owner
return
"<
%
s(
%
s,
%
d)>"
%
(
self
.
__class__
.
__name__
,
owner
and
owner
.
get_name
()
,
owner
and
owner
.
name
,
self
.
__count
)
def
acquire
(
self
,
blocking
=
1
):
...
...
@@ -534,7 +534,7 @@ class Thread(_Verbose):
# self.
if
_sys
:
_sys
.
stderr
.
write
(
"Exception in thread
%
s:
\n
%
s
\n
"
%
(
self
.
get_name
()
,
_format_exc
()))
(
self
.
name
,
_format_exc
()))
else
:
# Do the best job possible w/o a huge amt. of code to
# approximate a traceback (code ideas from
...
...
@@ -542,7 +542,7 @@ class Thread(_Verbose):
exc_type
,
exc_value
,
exc_tb
=
self
.
__exc_info
()
try
:
print
>>
self
.
__stderr
,
(
"Exception in thread "
+
self
.
get_name
()
+
"Exception in thread "
+
self
.
name
+
" (most likely raised during interpreter shutdown):"
)
print
>>
self
.
__stderr
,
(
"Traceback (most recent call last):"
)
...
...
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