[issue29376] threading._DummyThread.__repr__ raises AssertionError

2017-03-31 Thread Donald Stufft
Changes by Donald Stufft : -- pull_requests: +1044 ___ Python tracker ___ ___

[issue29376] threading._DummyThread.__repr__ raises AssertionError

2017-03-24 Thread Xiang Zhang
Xiang Zhang added the comment: New changeset f3a9faba4bad91286b78b498547de928078f55da by Xiang Zhang in branch 'master': bpo-29376: Fix assertion error in threading._DummyThread.is_alive() (GH-236) https://github.com/python/cpython/commit/f3a9faba4bad91286b78b498547de928078f55da --

[issue29376] threading._DummyThread.__repr__ raises AssertionError

2017-03-24 Thread Xiang Zhang
Xiang Zhang added the comment: New changeset 8400ae209b5fa3d3bdc39d3876eef13d1ea9a72a by Xiang Zhang in branch '3.5': bpo-29376: Fix assertion error in threading._DummyThread.is_alive() (GH-329) https://github.com/python/cpython/commit/8400ae209b5fa3d3bdc39d3876eef13d1ea9a72a --

[issue29376] threading._DummyThread.__repr__ raises AssertionError

2017-03-24 Thread Xiang Zhang
Xiang Zhang added the comment: New changeset 4b6c41768a15fc85e3069603ef89344bd97f79af by Xiang Zhang in branch '3.6': bpo-29376: Fix assertion error in threading._DummyThread.is_alive() (GH-330) https://github.com/python/cpython/commit/4b6c41768a15fc85e3069603ef89344bd97f79af --

[issue29376] threading._DummyThread.__repr__ raises AssertionError

2017-03-17 Thread Larry Hastings
Changes by Larry Hastings : -- pull_requests: +581 ___ Python tracker ___ ___

[issue29376] threading._DummyThread.__repr__ raises AssertionError

2017-02-26 Thread Xiang Zhang
Changes by Xiang Zhang : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___

[issue29376] threading._DummyThread.__repr__ raises AssertionError

2017-02-26 Thread Xiang Zhang
Changes by Xiang Zhang : -- pull_requests: +289 ___ Python tracker ___ ___ Python-bugs-list

[issue29376] threading._DummyThread.__repr__ raises AssertionError

2017-02-26 Thread Xiang Zhang
Changes by Xiang Zhang : -- pull_requests: +290 ___ Python tracker ___ ___ Python-bugs-list

[issue29376] threading._DummyThread.__repr__ raises AssertionError

2017-02-22 Thread Xiang Zhang
Changes by Xiang Zhang : -- pull_requests: +197 ___ Python tracker ___ ___ Python-bugs-list

[issue29376] threading._DummyThread.__repr__ raises AssertionError

2017-02-03 Thread Xiang Zhang
Xiang Zhang added the comment: This seems an regression from #18808, so nosy Tim and Antoine. Since _DummyThread is always alive and daemonic, I think the solution could be overriding is_alive in _DummyThread and always returning True. -- keywords: +patch nosy: +xiang.zhang stage: ->

[issue29376] threading._DummyThread.__repr__ raises AssertionError

2017-02-03 Thread Xiang Zhang
Changes by Xiang Zhang : -- nosy: +pitrou, tim.peters ___ Python tracker ___ ___

[issue29376] threading._DummyThread.__repr__ raises AssertionError

2017-01-25 Thread Tom Myers
New submission from Tom Myers: _DummyThread objects have _is_stopped = False, but _tstate_lock = None. This causes an AssertionError in is_alive and __repr__ . File ".../cp34/lib/python3.4/threading.py", line 814, in __repr__ self.is_alive() # easy way to get ._is_stopped set when