1. b8de9fa Merged revisions 84106 via svnmerge from by Alexander Belopolsky · 15 years ago
  2. 9900916 Merged revisions 83918 via svnmerge from by Antoine Pitrou · 15 years ago
  3. c83ea13 Untabify C files. Will watch buildbots. by Antoine Pitrou · 15 years ago
  4. 71fb87e Issue #7544: Preallocate thread memory before creating the thread to avoid a by Victor Stinner · 15 years ago
  5. c951d56 Issue #3299: fix thread.allocate_lock() error handler, replace PyObject_Del() by Victor Stinner · 15 years ago
  6. adfc80b #4852: Remove dead code in every thread implementation, unused for many years. by Amaury Forgeot d'Arc · 15 years ago
  7. 2c970a2 Remove official documentation entry for thread._count() and make the by Antoine Pitrou · 16 years ago
  8. 59c44f3 Issue #7222: Make thread "reaping" more reliable so that reference by Antoine Pitrou · 16 years ago
  9. dbf3b25 #6990: clear threading.local's key only after its thread state is removed: by Philip Jenvey · 16 years ago
  10. 4e63d54 Add weakref support to the thread.lock type. by Gregory P. Smith · 16 years ago
  11. a7724e5 stop using Py_FindMethod by Benjamin Peterson · 16 years ago
  12. 1f40c8a #Issue3088 in-progress: Race condition with instances of classes derived from threading.local: by Amaury Forgeot d'Arc · 17 years ago
  13. dd96db6 This reverts r63675 based on the discussion in this thread: by Gregory P. Smith · 17 years ago
  14. 593daf5 Renamed PyString to PyBytes by Christian Heimes · 17 years ago
  15. e93237d #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFCNT. Macros for b/w compatibility are available. by Christian Heimes · 18 years ago
  16. 6819210 PEP 3123: Provide forward compatibility with Python 3.0, while keeping by Martin v. Löwis · 18 years ago
  17. 837ce93 Add some asserts. In sysmodule, I think these were to try to silence by Neal Norwitz · 19 years ago
  18. 6d7db6e Remove unused variable. by Brett Cannon · 19 years ago
  19. 9291332 Patch #1454481: Make thread stack size runtime tunable. by Andrew MacIntyre · 19 years ago
  20. 28eeefe Revert revisions: by Tim Peters · 19 years ago
  21. 6539d2d Patch #1454481: Make thread stack size runtime tunable. by Andrew MacIntyre · 19 years ago
  22. 96a8c39 Make use of METH_O and METH_NOARGS where possible. by Georg Brandl · 19 years ago
  23. da5b701 Get rid of __context__, per the latest changes to PEP 343 and python-dev by Guido van Rossum · 19 years ago
  24. 5576b54 remove forward declarations, move constructor functions. makes code C++ safe. by Anthony Baxter · 19 years ago
  25. d37ac69 Remove unnecessary casts from type object initializers. by Georg Brandl · 19 years ago
  26. f669436 Um, I thought I'd already checked this in. by Guido van Rossum · 19 years ago
  27. f3c4ad1 typo by Georg Brandl · 19 years ago
  28. 1a5e21e Updates to the with-statement: by Guido van Rossum · 19 years ago
  29. 1ac754f Check return result from Py_InitModule*(). This API can fail. by Neal Norwitz · 20 years ago
  30. 188d436 Fix bug: by Michael W. Hudson · 20 years ago
  31. 2368b3c Consistently use hard tabs for indentation. by Michael W. Hudson · 20 years ago
  32. 64e0814 Add a missing incref. by Michael W. Hudson · 20 years ago
  33. a43ece9 Delete some vestigial code; execution will never reach the 'if' statement if args is NULL by Andrew M. Kuchling · 20 years ago
  34. 54c273c The error message "can't start new thread" should not end in a newline. by Guido van Rossum · 20 years ago
  35. eb619bb Fix for [ 1010677 ] thread Module Breaks PyGILState_Ensure(), by Mark Hammond · 21 years ago
  36. d15dc06 Implemented thread-local data as proposed on python-dev: by Jim Fulton · 21 years ago
  37. e5662ae Changed random calls to PyThreadState_Get() to use the macro by Nicholas Bastin · 21 years ago
  38. a1ad5f6 Correct function name. by Kurt B. Kaiser · 22 years ago
  39. a11e846 Add interrupt_main() to thread module. by Kurt B. Kaiser · 22 years ago
  40. 24ccca1 When an unhandled exception happens, report the repr() of the function by Guido van Rossum · 22 years ago
  41. 884baa1 --with(out)-thread is deprecated according to configure --help by Neal Norwitz · 23 years ago
  42. fe51c6d Excise DL_EXPORT/DL_IMPORT from Modules/*. Required adding a prototype by Mark Hammond · 23 years ago
  43. 938ace6 staticforward bites the dust. by Jeremy Hylton · 23 years ago
  44. 14f8b4c Patch #568124: Add doc string macros. by Martin v. Löwis · 23 years ago
  45. 8fdc75b Lock methods acquire() and locked() now return bools. by Guido van Rossum · 23 years ago
  46. ba3a16c Remove METH_OLDARGS: by Neal Norwitz · 23 years ago
  47. 4632117 Missed change METH_OLDARGS to METH_NOARGS for two aliased functions by Neal Norwitz · 23 years ago
  48. 2358425 Missed change METH_OLDARGS to METH_NOARGS for two aliased functions by Neal Norwitz · 23 years ago
  49. 3a6f978 Remove many uses of PyArg_NoArgs macro, change METH_OLDARGS to METH_NOARGS. by Neal Norwitz · 23 years ago
  50. 1464839 Patch supplied by Burton Radons for his own SF bug #487390: Modifying by Guido van Rossum · 24 years ago
  51. 3c28863 Partial patch from SF #452266, by Jason Petrone. by Guido van Rossum · 24 years ago
  52. 38300c6 Fix typo in docstring by Andrew M. Kuchling · 24 years ago
  53. 2528b19 Use PyThreadState_DeleteCurrent() instead of PyThreadState_Delete() by Guido van Rossum · 25 years ago
  54. 9c801ab t_bootstram(): Use PySys_WriteStderr() instead of fprintf(stderr,...). by Fred Drake · 25 years ago
  55. 8586991 REMOVED all CWI, CNRI and BeOpen copyright markings. by Guido van Rossum · 25 years ago
  56. 38d45b7 The second argument to start_new_thread() is not a tuple, as pointed by Guido van Rossum · 25 years ago
  57. a1abb72 Use METH_OLDARGS instead of numeric constant 0 in method def. tables by Andrew M. Kuchling · 25 years ago
  58. e365fb8 Use METH_VARARGS instead of numeric constant 1 in method def. tables by Andrew M. Kuchling · 25 years ago
  59. f3f33dc Bunch of minor ANSIfications: 'void initfunc()' -> 'void initfunc(void)', by Thomas Wouters · 25 years ago
  60. 3707efe ANSI-fication by Peter Schneider-Kamp · 25 years ago
  61. ffcc381 Change copyright notice - 2nd try. by Guido van Rossum · 25 years ago
  62. fd71b9e Change copyright notice. by Guido van Rossum · 25 years ago
  63. b18618d Vladimir Marangozov's long-awaited malloc restructuring. by Guido van Rossum · 25 years ago
  64. 43713e5 Massive patch by Skip Montanaro to add ":name" to as many by Guido van Rossum · 25 years ago
  65. 65d5b57 Thanks to Chris Herborth, the thread primitives now have proper Py* by Guido van Rossum · 27 years ago
  66. 3886bb6 Add DL_EXPORT() to all modules that could possibly be used on BeOS or Windows. by Guido van Rossum · 27 years ago
  67. 89bae99 Make gcc -Wall happy: Remove unused decls of getloclock() and is_lockobject(). by Guido van Rossum · 27 years ago
  68. 49b5606 Renamed thread.h to pythread.h. by Guido van Rossum · 27 years ago
  69. bcc2074 Changes for BeOS, QNX and long long, by Chris Herborth. by Guido van Rossum · 27 years ago
  70. d2264bb # Remove an extra blank line from a doc string. by Guido van Rossum · 27 years ago
  71. 75e9fc3 Added doc strings. Also export LockType from the modoule, and give it by Guido van Rossum · 27 years ago
  72. bebc97f t_bootstrap(): Use PyErr_ExceptionMatches(...) instead of PyErr_Occurred(...). by Fred Drake · 27 years ago
  73. 40769dd Don't store the exception info from an unhandled exception in a thread by Guido van Rossum · 28 years ago
  74. 0cb96de Apply two changes, systematically: by Guido van Rossum · 28 years ago
  75. b02158e Oops, one more checkin. Use the new tstate/interp interface. by Guido van Rossum · 28 years ago
  76. 75aa0d6 Use the new functions PyEval_AcquireThread() and by Guido van Rossum · 28 years ago
  77. a027efa Massive changes for separate thread state management. by Guido van Rossum · 28 years ago
  78. 64278cf initthread(): Removed extraneous Py_INCREF(ThreadError) by Barry Warsaw · 29 years ago
  79. d0c1042 Renamed. by Barry Warsaw · 29 years ago
  80. a376cc5 Keep gcc -Wall happy. by Guido van Rossum · 29 years ago
  81. d266eb4 New permission notice, includes CNRI. by Guido van Rossum · 29 years ago
  82. 385e7c6 implement exit_thread through SystemExit exception by Guido van Rossum · 30 years ago
  83. a597dde cosmetic changes so these modules will work with the strict new naming scheme by Guido van Rossum · 31 years ago
  84. 524b588 Added 1995 to copyright message. by Guido van Rossum · 31 years ago
  85. 3bbc62e Another bulky set of minor changes. by Guido van Rossum · 31 years ago
  86. b6775db Merge alpha100 branch back to main trunk by Guido van Rossum · 31 years ago
  87. 66bca32 Port to Solaris 2.3. by Sjoerd Mullender · 32 years ago
  88. 234f942 * Added gmtime/localtime/mktime and SYSV timezone globals to timemodule.c. by Guido van Rossum · 32 years ago
  89. 34679b7 * Added Fixcprt.py: script to fix copyright message. by Guido van Rossum · 33 years ago
  90. ed59d20 Various changes. by Sjoerd Mullender · 33 years ago
  91. f9f2e82 New thread.c from Sjoerd, supports _exit_prog(). Use this in goaway() by Guido van Rossum · 33 years ago
  92. ff4949e * Makefile: cosmetics by Guido van Rossum · 33 years ago
  93. 1984f1e * Makefile adapted to changes below. by Guido van Rossum · 33 years ago