1. 52005c2 Issue #22423: Unhandled exception in thread no longer causes unhandled by Serhiy Storchaka · 10 years ago
  2. 933538e Issue #20526, #19466: Revert changes of issue #19466 which introduces a by Victor Stinner · 10 years ago
  3. f28ba36 Issue #20532: Tests which use _testcapi now are marked as CPython only. by Serhiy Storchaka · 10 years ago
  4. 5cfc79d Issue #20532: Tests which use _testcapi now are marked as CPython only. by Serhiy Storchaka · 10 years ago
  5. 1310510 Issue #14432: Generator now clears the borrowed reference to the thread state by Victor Stinner · 11 years ago
  6. fdeb6ec Issue #14432: Remove the thread state field from the frame structure. Fix a by Victor Stinner · 11 years ago
  7. ed3b0bc Issue #18874: Implement the PEP 454 (tracemalloc) by Victor Stinner · 11 years ago
  8. 45956b9 Close #19466: Clear the frames of daemon threads earlier during the Python by Victor Stinner · 11 years ago
  9. 3d1b7a0 Whitespace normalization. by Tim Peters · 11 years ago
  10. e99bdb9 Issue 19158: a rare race in BoundedSemaphore could allow .release() too often. by Tim Peters · 11 years ago
  11. 7634e1c Issue 19158: a rare race in BoundedSemaphore could allow .release() too often. by Tim Peters · 11 years ago
  12. 77e904e Issue #18948: improve SuppressCoreFiles to include Windows crash popup suppression, and use it in more tests. by Antoine Pitrou · 11 years ago
  13. 72460fa Get "stopped" back into repr(Thread) when appropriate. by Tim Peters · 11 years ago
  14. c363a23 Issue 18984: Remove ._stopped Event from Thread internals. by Tim Peters · 11 years ago
  15. 5da7e79 Issue #18808 again: fix the after-fork logic for not-yet-started or already-stopped threads. by Antoine Pitrou · 11 years ago
  16. 7b47699 Issue #18808: Thread.join() now waits for the underlying thread state to be destroyed before returning. by Antoine Pitrou · 11 years ago
  17. 58b5c5a Issue #18882: Add threading.main_thread() function. by Andrew Svetlov · 11 years ago
  18. 625eed7 test_threading isn't rudimentary anymore by Antoine Pitrou · 11 years ago
  19. 4c8ce84 test_threading isn't rudimentary anymore by Antoine Pitrou · 11 years ago
  20. 79a53ea Issue #18418: After fork(), reinit all threads states, not only active ones. by Charles-François Natali · 11 years ago
  21. 9939cc8 Issue #18418: After fork(), reinit all threads states, not only active ones. by Charles-François Natali · 11 years ago
  22. 7eaf3f7 Issue #18808: Non-daemon threads are now automatically joined when a sub-interpreter is shutdown (it would previously dump a fatal error). by Antoine Pitrou · 11 years ago
  23. 8408cea Issue #17094: Clear stale thread states after fork(). by Antoine Pitrou · 11 years ago
  24. 20ea96f backported rev 79713 from 3.4, test_recursion_limit skipped for -O0 by Łukasz Langa · 11 years ago
  25. 5cbf3a0 Merge #17435: Don't use mutable default values in Timer. by R David Murray · 11 years ago
  26. 19aeb43 Issue #17435: Don't use mutable default values in Timer. by R David Murray · 11 years ago
  27. bfc0245 Merge 3.3. by Stefan Krah · 12 years ago
  28. fc4aa76 Issue #11870: Skip test_3_join_in_forked_from_thread() on HP-UX. by Stefan Krah · 12 years ago
  29. d541d3f When not optimized function stack sizes are much larger and may cause this test to fail. by Benjamin Peterson · 12 years ago
  30. 4791a24 #16135: Removal of OS/2 support (Python code partial cleanup) by Jesus Cea · 12 years ago
  31. a9effcd Better diagnose test failure by Antoine Pitrou · 12 years ago
  32. b8b6a68 Better diagnose test failure by Antoine Pitrou · 12 years ago
  33. dd5aa36 Issue #14308: Fix an exception when a dummy thread is in the threading module's active list after a fork(). by Antoine Pitrou · 12 years ago
  34. 8e6e0fd Issue #14308: Fix an exception when a "dummy" thread is in the threading module's active list after a fork(). by Antoine Pitrou · 12 years ago
  35. 9384c7d Issue #13902: Fix a random test_threading failure on FreeBSD 6 buildbots (due by Charles-François Natali · 12 years ago
  36. 8e6fe64 Issue #13902: Fix a random test_threading failure on FreeBSD 6 buildbots (due by Charles-François Natali · 12 years ago
  37. b2c9e9a Skip test_threading.test_reinit_tls_after_fork() on platforms where fork() by Charles-François Natali · 12 years ago
  38. 6f91ce7 Skip test_threading.test_reinit_tls_after_fork() on platforms where fork() by Charles-François Natali · 12 years ago
  39. 3f32fc8 Merge. by Charles-François Natali · 13 years ago
  40. 6d0d24e Issue #13817: After fork(), reinit the ad-hoc TLS implementation earlier to fix by Charles-François Natali · 13 years ago
  41. 9ab91c6 Issue #13894: Skip test_threading.CRLockTests if _CRLock isn't available. Patch by Charles-François Natali · 13 years ago
  42. 6b671b2 Issue #13894: Skip test_threading.CRLockTests if _CRLock isn't available. Patch by Charles-François Natali · 13 years ago
  43. 2555b0a (merge 3.2) Issue #11870: Skip test_threading.test_2_join_in_forked_process() by Victor Stinner · 13 years ago
  44. 26d3186 Issue #11870: Skip test_threading.test_2_join_in_forked_process() on platforms by Victor Stinner · 13 years ago
  45. 2f655b7 (merge 3.2) Issue #12451: Open files in binary mode in some tests when the text by Victor Stinner · 13 years ago
  46. a6d2c76 Issue #12451: Open files in binary mode in some tests when the text file is not by Victor Stinner · 13 years ago
  47. 2a12974 Close #12028: Make threading._get_ident() public, rename it to by Victor Stinner · 13 years ago
  48. 61be422 Issue #9670: Increase the default stack size for secondary threads on by Ned Deily · 13 years ago
  49. 056f5b9 Issue #9670: Increase the default stack size for secondary threads on by Ned Deily · 13 years ago
  50. 9a7c524 Issue #9670: Increase the default stack size for secondary threads on by Ned Deily · 13 years ago
  51. b596dc7 Merge: Use shared testing facilities in test_threading by Antoine Pitrou · 13 years ago
  52. c4d7864 Use shared testing facilities in test_threading by Antoine Pitrou · 13 years ago
  53. fc20b0c Issue #1856: Avoid crashes and lockups when daemon threads run while the by Antoine Pitrou · 13 years ago
  54. 0d5e52d Issue #1856: Avoid crashes and lockups when daemon threads run while the by Antoine Pitrou · 13 years ago
  55. d5c355c Issue #11223: Replace threading._info() by sys.thread_info by Victor Stinner · 13 years ago
  56. 754851f Issue #11223: Add threading._info() function providing informations about the by Victor Stinner · 13 years ago
  57. 4e6aba6 Issue9670: Merge backout from 3.2. by Ned Deily · 13 years ago
  58. 2604e33 Issue9670: Merge backout to 3.2. by Ned Deily · 13 years ago
  59. 45e47e5 Issue9670: Back out changeset 378b40d71175; test fails on other platforms by Ned Deily · 13 years ago
  60. 6e678b4 Issue #9670: merge with current by Ned Deily · 13 years ago
  61. 15012a6 Issue #9670: merge with 3.2 by Ned Deily · 13 years ago
  62. 517ac72 Issue #9670: Increase the default stack size for secondary threads on by Ned Deily · 13 years ago
  63. 3b3499b #11565: Merge with 3.1. by Ezio Melotti · 13 years ago
  64. 1392500 #11565: Fix several typos. Patch by Piotr Kasprzyk. by Ezio Melotti · 13 years ago
  65. b88ed15 #11565: Merge with 3.2. by Ezio Melotti · 13 years ago
  66. fcf81fd Issue #11140: Lock.release() now raises a RuntimeError when attempting by Antoine Pitrou · 13 years ago
  67. 0bd4deb Issue #6064: Add a `daemon` keyword argument to the threading.Thread by Antoine Pitrou · 13 years ago
  68. 7beae8a Issue 10825: Minor updates to the test suite. by Raymond Hettinger · 14 years ago
  69. c932b65 test_threading: use Popen.communicate() instead of .wait() by Victor Stinner · 14 years ago
  70. 4b129d2 Merged revisions 87710 via svnmerge from by Gregory P. Smith · 14 years ago
  71. 96c886c issue6643 - Two locks held within the threading module on each thread instance by Gregory P. Smith · 14 years ago
  72. 19f2aeb Merged revisions 86596 via svnmerge from by Ezio Melotti · 14 years ago
  73. b3aedd4 #9424: Replace deprecated assert* methods in the Python test suite. by Ezio Melotti · 14 years ago
  74. de11b18 Close subprocess pipes to clean up ResourceWarnings by Brian Curtin · 14 years ago
  75. e509ff4 Merged revisions 86107 via svnmerge from by Brian Curtin · 14 years ago
  76. b68928b Clean up ResourceWarnings. Explictly close stdout from the subprocess. by Brian Curtin · 14 years ago
  77. 3be0003 issue 8777 Add threading.Barrier by Kristján Valur Jónsson · 14 years ago
  78. 397cd8a Merged revisions 85586-85587,85596-85598 via svnmerge from by Gregory P. Smith · 14 years ago
  79. feedda2 Avoid hanging the test on netbsd5. by Gregory P. Smith · 14 years ago
  80. 4a5dd5c Merged revisions 84909-84913 via svnmerge from by Antoine Pitrou · 14 years ago
  81. 7c08744 Make error more explicit in test_finalize_with_trace by Antoine Pitrou · 14 years ago
  82. 62f68ed Factor out stripping of interpreter debug output in test.support.strip_python_stderr() by Antoine Pitrou · 14 years ago
  83. 81a4a6a Tab test_repr_daemon over so it's included in ThreadTests. Noticed by Amaury. by Brian Curtin · 14 years ago
  84. 3f5f226 Add more tests for the threading.Thread.repr. by Brett Cannon · 14 years ago
  85. 45df820 Merged revisions 80552-80556,80564-80566,80568-80571 via svnmerge from by Victor Stinner · 14 years ago
  86. ff31864 Merged revisions 78538 via svnmerge from by Gregory P. Smith · 14 years ago
  87. f50f168 Merged revisions 78536 via svnmerge from by Gregory P. Smith · 14 years ago
  88. 31d12ca Merged revisions 78519 via svnmerge from by Gregory P. Smith · 14 years ago
  89. 3fdd964 Merged revisions 78517 via svnmerge from by Gregory P. Smith · 14 years ago
  90. e961593 Merged revisions 77727 via svnmerge from by Ezio Melotti · 15 years ago
  91. b58e0bd use assert[Not]In where appropriate by Ezio Melotti · 15 years ago
  92. 577473f use assert[Not]In where appropriate by Benjamin Peterson · 15 years ago
  93. c3b0757 Silence getcheckinterval()-related warnings in the test suite by Antoine Pitrou · 15 years ago
  94. a0dfa82 Merged revisions 75149,75260-75263,75265-75267,75292,75300,75376,75405,75429-75433,75437,75445,75501,75551,75572,75589-75591,75657,75742,75868,75952-75957,76057,76105,76139,76143,76162,76223 via svnmerge from by Benjamin Peterson · 15 years ago
  95. 434736a Issue #3001: Add a C implementation of recursive locks which is used by by Antoine Pitrou · 15 years ago
  96. 959f3e5 Merged revisions 76138,76173 via svnmerge from by Antoine Pitrou · 15 years ago
  97. b087268 Merged revisions 76172 via svnmerge from by Antoine Pitrou · 15 years ago
  98. debfafd Merged revisions 76149 via svnmerge from by Antoine Pitrou · 15 years ago
  99. ca13a0d Merged revisions 76148 via svnmerge from by Antoine Pitrou · 15 years ago
  100. 557934f Merged revisions 76137 via svnmerge from by Antoine Pitrou · 15 years ago