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.

classification
Title: Tests for synchronization primitives
Type: behavior Stage: patch review
Components: Library (Lib), Tests Versions: Python 3.2, Python 2.7
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: pitrou Nosy List: gregory.p.smith, jyasskin, pitrou, tim.peters
Priority: normal Keywords: patch

Created on 2009-11-06 11:26 by pitrou, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
locktests2.patch pitrou, 2009-11-06 14:44
Messages (5)
msg94966 - (view) Author: Antoine Pitrou (pitrou) * (Python committer) Date: 2009-11-06 11:26
Here is a patch adding unit tests for synchronization primitives in
threading.py (Lock, RLock, Event, Condition). I've left Semaphore and
BoundedSemaphore out of the picture.
msg94967 - (view) Author: Antoine Pitrou (pitrou) * (Python committer) Date: 2009-11-06 13:29
New patch adding Semaphore and BoundedSemaphore tests.
msg94993 - (view) Author: Antoine Pitrou (pitrou) * (Python committer) Date: 2009-11-06 18:26
Please make a sign if you want to review, otherwise I will commit.
msg95000 - (view) Author: Gregory P. Smith (gregory.p.smith) * (Python committer) Date: 2009-11-06 21:08
Can you have Bunch inherit from object and add a docstring to its
constructor?

otherwise looks good, commit when you're ready.
msg95003 - (view) Author: Antoine Pitrou (pitrou) * (Python committer) Date: 2009-11-06 22:41
Ok, I committed the patch in trunk and py3k after applying the suggested
fixes. Thank you.
History
Date User Action Args
2022-04-11 14:56:54adminsetgithub: 51519
2009-11-06 22:41:53pitrousetstatus: open -> closed
resolution: fixed
messages: + msg95003
2009-11-06 21:08:54gregory.p.smithsetassignee: pitrou
messages: + msg95000
2009-11-06 18:26:22pitrousetmessages: + msg94993
2009-11-06 14:44:12pitrousetfiles: + locktests2.patch
2009-11-06 14:44:04pitrousetfiles: - locktests2.patch
2009-11-06 14:44:01pitrousetfiles: - locktests.patch
2009-11-06 13:29:31pitrousetfiles: + locktests2.patch

messages: + msg94967
2009-11-06 11:44:46pitrousetnosy: + tim.peters
2009-11-06 11:26:26pitroucreate