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
59aba128
Kaydet (Commit)
59aba128
authored
Tem 01, 2003
tarafından
Tim Peters
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Make the classes exposed by threading.py new-style classes. This is
mostly for convenience and to aid debugging.
üst
0939fac7
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
3 deletions
+10
-3
threading.py
Lib/threading.py
+7
-3
NEWS
Misc/NEWS
+3
-0
No files found.
Lib/threading.py
Dosyayı görüntüle @
59aba128
...
...
@@ -24,13 +24,17 @@ ThreadError = thread.error
del
thread
# Debug support (adapted from ihooks.py)
# Debug support (adapted from ihooks.py).
# All the major classes here derive from _Verbose. We force that to
# be a new-style class so that all the major classes here are new-style.
# This helps debugging (type(instance) is more revealing for instances
# of new-style classes).
_VERBOSE
=
False
if
__debug__
:
class
_Verbose
:
class
_Verbose
(
object
)
:
def
__init__
(
self
,
verbose
=
None
):
if
verbose
is
None
:
...
...
@@ -46,7 +50,7 @@ if __debug__:
else
:
# Disable this when using "python -O"
class
_Verbose
:
class
_Verbose
(
object
)
:
def
__init__
(
self
,
verbose
=
None
):
pass
def
_note
(
self
,
*
args
):
...
...
Misc/NEWS
Dosyayı görüntüle @
59aba128
...
...
@@ -24,6 +24,9 @@ Extension modules
Library
-------
- The classes in threading.py are now new-style classes. That they
weren'
t
before
was
an
oversight
.
-
SF
bug
763023
:
fix
uncaught
ZeroDivisionError
in
difflib
ratio
methods
when
there
are
no
lines
.
...
...
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