This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author Tom Myers
Recipients Tom Myers
Date 2017-01-25.23:10:08
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1485385808.95.0.00162143215773.issue29376@psf.upfronthosting.co.za>
In-reply-to
Content
_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 appropriate
  File ".../cp34/lib/python3.4/threading.py", line 1110, in is_alive
    self._wait_for_tstate_lock(False)
  File ".../cp34/lib/python3.4/threading.py", line 1066, in _wait_for_tstate_lock
    assert self._is_stopped
AssertionError
History
Date User Action Args
2017-01-25 23:10:08Tom Myerssetrecipients: + Tom Myers
2017-01-25 23:10:08Tom Myerssetmessageid: <1485385808.95.0.00162143215773.issue29376@psf.upfronthosting.co.za>
2017-01-25 23:10:08Tom Myerslinkissue29376 messages
2017-01-25 23:10:08Tom Myerscreate