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
f3a9faba
Kaydet (Commit)
f3a9faba
authored
Şub 27, 2017
tarafından
Xiang Zhang
Kaydeden (comit)
GitHub
Şub 27, 2017
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
bpo-29376: Fix assertion error in threading._DummyThread.is_alive() (GH-236)
üst
1f5639c7
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
9 additions
and
0 deletions
+9
-0
test_threading.py
Lib/test/test_threading.py
+3
-0
threading.py
Lib/threading.py
+4
-0
NEWS
Misc/NEWS
+2
-0
No files found.
Lib/test/test_threading.py
Dosyayı görüntüle @
f3a9faba
...
...
@@ -170,6 +170,9 @@ class ThreadTests(BaseTestCase):
mutex
.
acquire
()
self
.
assertIn
(
tid
,
threading
.
_active
)
self
.
assertIsInstance
(
threading
.
_active
[
tid
],
threading
.
_DummyThread
)
#Issue 29376
self
.
assertTrue
(
threading
.
_active
[
tid
]
.
is_alive
())
self
.
assertRegex
(
repr
(
threading
.
_active
[
tid
]),
'_DummyThread'
)
del
threading
.
_active
[
tid
]
# PyThreadState_SetAsyncExc() is a CPython-only gimmick, not (currently)
...
...
Lib/threading.py
Dosyayı görüntüle @
f3a9faba
...
...
@@ -1217,6 +1217,10 @@ class _DummyThread(Thread):
def
_stop
(
self
):
pass
def
is_alive
(
self
):
assert
not
self
.
_is_stopped
and
self
.
_started
.
is_set
()
return
True
def
join
(
self
,
timeout
=
None
):
assert
False
,
"cannot join a dummy thread"
...
...
Misc/NEWS
Dosyayı görüntüle @
f3a9faba
...
...
@@ -249,6 +249,8 @@ Extension Modules
Library
-------
-
bpo
-
29376
:
Fix
assertion
error
in
threading
.
_DummyThread
.
is_alive
().
-
bpo
-
28624
:
Add
a
test
that
checks
that
cwd
parameter
of
Popen
()
accepts
PathLike
objects
.
Patch
by
Sayan
Chowdhury
.
...
...
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