summaryrefslogtreecommitdiff
path: root/Lib/test/test_threading.py
Commit message (Expand)AuthorAgeFilesLines
* backported rev 79713 from 3.4, test_recursion_limit skipped for -O0?ukasz Langa2013-04-241-1/+2
* Issue #17435: Don't use mutable default values in Timer.R David Murray2013-03-301-12/+27
* Issue #11870: Skip test_3_join_in_forked_from_thread() on HP-UX.Stefan Krah2013-01-171-1/+1
* Better diagnose test failureAntoine Pitrou2012-06-291-2/+2
|\
| * Better diagnose test failureAntoine Pitrou2012-06-291-2/+2
* | Issue #14308: Fix an exception when a dummy thread is in the threading module...Antoine Pitrou2012-04-201-3/+16
|\ \ | |/ |/|
| * Issue #13902: Fix a random test_threading failure on FreeBSD 6 buildbots (dueCharles-François Natali2012-03-241-3/+16
| |\
| | * Skip test_threading.test_reinit_tls_after_fork() on platforms where fork()Charles-François Natali2012-02-081-0/+1
| | |\
| | * \ Issue #13817: After fork(), reinit the ad-hoc TLS implementation earlier to fixCharles-François Natali2012-02-021-3/+16
| | |\ \
| | | * \ Issue #13894: Skip test_threading.CRLockTests if _CRLock isn't available. PatchCharles-François Natali2012-01-281-3/+16
| | | |\ \
| | | | * \ (merge 3.2) Issue #11870: Skip test_threading.test_2_join_in_forked_process()Victor Stinner2011-07-011-14/+11
| | | | |\ \
| | | | * \ \ (merge 3.2) Issue #12451: Open files in binary mode in some tests when the textVictor Stinner2011-06-301-3/+2
| | | | |\ \ \
| | | | * | | | Close #12028: Make threading._get_ident() public, rename it toVictor Stinner2011-05-301-2/+2
| | | | * | | | Issue #9670: Increase the default stack size for secondary threads onNed Deily2011-05-281-0/+32
| | | | |\ \ \ \
| | | | * \ \ \ \ Merge: Use shared testing facilities in test_threadingAntoine Pitrou2011-05-051-1/+14
| | | | |\ \ \ \ \
| | | | | * \ \ \ \ Issue #1856: Avoid crashes and lockups when daemon threads run while theAntoine Pitrou2011-05-041-1/+14
| | | | | |\ \ \ \ \
| | | | | | * | | | | Issue #11223: Replace threading._info() by sys.thread_infoVictor Stinner2011-04-301-11/+1
| | | | | | * | | | | Issue #11223: Add threading._info() function providing informations about theVictor Stinner2011-04-191-1/+12
| | | | | | * | | | | Issue9670: Merge backout from 3.2.Ned Deily2011-04-091-0/+12
| | | | | | |\ \ \ \ \
| | | | | | | * \ \ \ \ Issue #9670: merge with currentNed Deily2011-04-091-0/+30
| | | | | | | |\ \ \ \ \
| | | | | | | * \ \ \ \ \ #11565: Merge with 3.2.Ezio Melotti2011-03-161-0/+12
| | | | | | | |\ \ \ \ \ \
| | | | | | | | * | | | | | Issue #11140: Lock.release() now raises a RuntimeError when attemptingAntoine Pitrou2011-02-281-0/+4
| | | | | | | | * | | | | | Issue #6064: Add a `daemon` keyword argument to the threading.ThreadAntoine Pitrou2011-02-251-0/+8
* | | | | | | | | | | | | | Issue #14308: Fix an exception when a "dummy" thread is in the threading modu...Antoine Pitrou2012-04-191-0/+29
|/ / / / / / / / / / / / /
* | | | | | | | | | | | | Issue #13902: Fix a random test_threading failure on FreeBSD 6 buildbots (dueCharles-François Natali2012-03-241-0/+1
| |_|_|_|_|_|_|_|_|_|_|/ |/| | | | | | | | | | |
* | | | | | | | | | | | Skip test_threading.test_reinit_tls_after_fork() on platforms where fork()Charles-François Natali2012-02-081-0/+1
|/ / / / / / / / / / /
* | | | | | | | | | | Issue #13817: After fork(), reinit the ad-hoc TLS implementation earlier to fixCharles-François Natali2012-02-021-0/+23
|/ / / / / / / / / /
* | | | | | | | | | Issue #13894: Skip test_threading.CRLockTests if _CRLock isn't available. PatchCharles-François Natali2012-01-281-0/+1
| |_|_|_|_|_|_|_|/ |/| | | | | | | |
* | | | | | | | | Issue #11870: Skip test_threading.test_2_join_in_forked_process() on platformsVictor Stinner2011-07-011-14/+11
| |_|_|_|_|_|_|/ |/| | | | | | |
* | | | | | | | Issue #12451: Open files in binary mode in some tests when the text file is notVictor Stinner2011-06-301-3/+2
| |_|_|_|_|_|/ |/| | | | | |
* | | | | | | Issue #9670: Increase the default stack size for secondary threads onNed Deily2011-05-281-0/+32
|\ \ \ \ \ \ \ | |/ / / / / / |/| | | | | |
| * | | | | | Issue #9670: Increase the default stack size for secondary threads onNed Deily2011-05-281-0/+31
* | | | | | | Use shared testing facilities in test_threadingAntoine Pitrou2011-05-051-47/+18
| |/ / / / / |/| | | | |
* | | | | | Issue #1856: Avoid crashes and lockups when daemon threads run while theAntoine Pitrou2011-05-041-1/+44
| |/ / / / |/| | | |
* | | | | Issue9670: Merge backout to 3.2.Ned Deily2011-04-091-47/+80
|\ \ \ \ \ | |/ / / / |/| | | / | | |_|/ | |/| |
| * | | Issue #9670: merge with 3.2Ned Deily2011-04-091-0/+30
| |\ \ \ | | |/ / | |/| |
| * | | #11565: Merge with 3.1.Ezio Melotti2011-03-161-47/+80
| |\ \ \ | | | |/ | | |/|
| | * | Issue 10825: Minor updates to the test suite.Raymond Hettinger2011-01-061-2/+2
| | * | test_threading: use Popen.communicate() instead of .wait()Victor Stinner2011-01-051-3/+3
| | * | issue6643 - Two locks held within the threading module on each thread instanceGregory P. Smith2011-01-031-4/+147
| | * | #9424: Replace deprecated assert* methods in the Python test suite.Ezio Melotti2010-11-201-6/+6
| | * | Close subprocess pipes to clean up ResourceWarningsBrian Curtin2010-11-051-0/+4
| | * | Clean up ResourceWarnings. Explictly close stdout from the subprocess.Brian Curtin2010-11-021-0/+1
| | * | issue 8777Kristján Valur Jónsson2010-10-281-0/+3
| | * | Avoid hanging the test on netbsd5.Gregory P. Smith2010-10-171-1/+2
| | * | Make error more explicit in test_finalize_with_traceAntoine Pitrou2010-09-191-3/+8
| | * | Factor out stripping of interpreter debug output in test.support.strip_python...Antoine Pitrou2010-08-041-2/+2
| | * | Tab test_repr_daemon over so it's included in ThreadTests.Brian Curtin2010-07-231-5/+5
| | * | Add more tests for the threading.Thread.repr.Brett Cannon2010-07-231-1/+8
| | * | Merged revisions 80552-80556,80564-80566,80568-80571 via svnmerge fromVictor Stinner2010-04-281-2/+2