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
685e6973
Kaydet (Commit)
685e6973
authored
Haz 29, 2003
tarafından
Tim Peters
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Provide dummy (do-nothing) settrace() and setprofile() functions until
Jeremy can check in the real things.
üst
27409443
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
1 deletion
+13
-1
threading.py
Lib/threading.py
+9
-1
NEWS
Misc/NEWS
+4
-0
No files found.
Lib/threading.py
Dosyayı görüntüle @
685e6973
...
...
@@ -14,7 +14,8 @@ from traceback import print_exc as _print_exc
# Rename some stuff so "from threading import *" is safe
__all__
=
[
'activeCount'
,
'Condition'
,
'currentThread'
,
'enumerate'
,
'Event'
,
'Lock'
,
'RLock'
,
'Semaphore'
,
'BoundedSemaphore'
,
'Thread'
,
'Timer'
]
'Lock'
,
'RLock'
,
'Semaphore'
,
'BoundedSemaphore'
,
'Thread'
,
'Timer'
,
'setprofile'
,
'settrace'
]
_start_new_thread
=
thread
.
start_new_thread
_allocate_lock
=
thread
.
allocate_lock
...
...
@@ -600,6 +601,13 @@ def enumerate():
_active_limbo_lock
.
release
()
return
active
# XXX This needs a real defintion.
def
settrace
(
tracefunc
):
pass
# XXX This needs a real defintion.
def
setprofile
(
dispatchfunc
):
pass
# Create the main thread object
...
...
Misc/NEWS
Dosyayı görüntüle @
685e6973
...
...
@@ -127,6 +127,10 @@ Library
that cooperate with the functions of the same name in the sys
module. A function registered with the threading module will
be used for all threads it creates.
XXX Somebody forget to check these in to threading.py, although
XXX some other library modules call them. This will be repaired
XXX before the final release. For now, dummy settrace() and
XXX setprofile() functions have been added to threading.py.
- copy.py: applied SF patch 707900, fixing bug 702858, by Steven
Taschuk. Copying a new-style class that had a reference to itself
...
...
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