1. 3c1b379 Issue #20320: select.select() and select.kqueue.control() now round the timeout by Victor Stinner · 10 years ago
  2. dfe98a1 Issue #20437: Fixed 22 potential bugs when deleting objects references. by Serhiy Storchaka · 10 years ago
  3. 505ff75 Issue #20437: Fixed 21 potential bugs when deleting objects references. by Serhiy Storchaka · 10 years ago
  4. 44ed3de Issue #18774: Remove last bits of GNU PTH thread code, patch by Vajrasky Kok. by Christian Heimes · 11 years ago
  5. 6f6ec37 Issue #16105: When a signal handler fails to write to the file descriptor registered with ``signal.set_wakeup_fd()``, report an exception instead of ignoring the error. by Antoine Pitrou · 11 years ago
  6. 1c8f059 Issue #18520: Add a new PyStructSequence_InitType2() function, same than by Victor Stinner · 11 years ago
  7. 52c5f85 Issue #14173: Avoid crashing when reading a signal handler during interpreter shutdown. by Antoine Pitrou · 11 years ago
  8. c8c952c Issue #14173: Avoid crashing when reading a signal handler during interpreter shutdown. by Antoine Pitrou · 11 years ago
  9. 245bbee Merge. by Richard Oudkerk · 11 years ago
  10. cf8a1e5 - Issue #17782: Fix undefined behaviour on platforms where ``struct timespec``'s "tv_nsec" member is not a C long. by Antoine Pitrou · 11 years ago
  11. 7faf705 Issue #17591: Use lowercase filenames when including Windows header files. by Antoine Pitrou · 11 years ago
  12. c2d0200 Issue #4591: Uid and gid values larger than 2**31 are supported now. by Serhiy Storchaka · 11 years ago
  13. 7cf5599 Issue #4591: Uid and gid values larger than 2**31 are supported now. by Serhiy Storchaka · 11 years ago
  14. 611afc1 Issue #17098: all modules should have __loader__ by Brett Cannon · 11 years ago
  15. 0ecd30b Issue #17098: Make sure every module has __loader__ defined. by Brett Cannon · 11 years ago
  16. 9f30abd merge 3.3 by Benjamin Peterson · 12 years ago
  17. c68a4a0 check windows fd validity (closes #16992) by Benjamin Peterson · 12 years ago
  18. 0b83224 Fixes issue #9535: Fix pending signals that have been received but not by Gregory P. Smith · 12 years ago
  19. 34b1495 Fixes issue #9535: Fix pending signals that have been received but not by Gregory P. Smith · 12 years ago
  20. 9463e3a Fixes issue #9535: Fix pending signals that have been received but not by Gregory P. Smith · 12 years ago
  21. 14c81ab #16135: Removal of OS/2 support (Modules/*) by Jesus Cea · 12 years ago
  22. 643cd68 Issue #13964: signal.sigtimedwait() timeout is now a float instead of a tuple by Victor Stinner · 12 years ago
  23. 3f32fc8 Merge. by Charles-François Natali · 12 years ago
  24. 6d0d24e Issue #13817: After fork(), reinit the ad-hoc TLS implementation earlier to fix by Charles-François Natali · 12 years ago
  25. 6dd381e Issue #12328: Under Windows, refactor handling of Ctrl-C events and by Antoine Pitrou · 13 years ago
  26. bc80822 Issue #12303: Add sigwaitinfo() and sigtimedwait() to the signal module. by Ross Lagerwall · 13 years ago
  27. 10c30d6 Issue #8407: signal.sigwait() releases the GIL by Victor Stinner · 13 years ago
  28. c13ef66 Issue #8407: Fix the signal handler of the signal module: if it is called by Victor Stinner · 13 years ago
  29. aedb282 (Merge 3.2) Issue #12060: Use sig_atomic_t type and volatile keyword in the by Victor Stinner · 13 years ago
  30. 5ebfe6d (Merge 3.1) Issue #12060: Use sig_atomic_t type and volatile keyword in the by Victor Stinner · 13 years ago
  31. 2ec6b17 Issue #12060: Use sig_atomic_t type and volatile keyword in the signal module. by Victor Stinner · 13 years ago
  32. 388196e Issue #12011: signal.signal() and signal.siginterrupt() raise an OSError, by Victor Stinner · 13 years ago
  33. 86e104a Issue #8407: Use an explicit cast for FreeBSD by Victor Stinner · 13 years ago
  34. d49b1f1 Issue #8407: The signal handler writes the signal number as a single byte by Victor Stinner · 13 years ago
  35. b3e7219 Issue #8407: Add pthread_kill(), sigpending() and sigwait() functions to the by Victor Stinner · 13 years ago
  36. 35b300c Issue #8407: signal.pthread_sigmask() returns a set instead of a list by Victor Stinner · 13 years ago
  37. d0e516d Issue #8407: pthread_sigmask() checks immediatly if signal handlers have been by Victor Stinner · 13 years ago
  38. 72c53b5 cleanup signalmodule.c: use PyModule_AddIntMacro() by Victor Stinner · 13 years ago
  39. a929335 Issue #8407, issue #11859: Add signal.pthread_sigmask() function to fetch by Victor Stinner · 13 years ago
  40. 0c759fe Issue #10517: After fork(), reinitialize the TLS used by the PyGILState_* by Antoine Pitrou · 13 years ago
  41. 27026f8 (Merge 3.1) Issue #11768: The signal handler of the signal module only calls by Victor Stinner · 13 years ago
  42. 6c9b35b Issue #11768: The signal handler of the signal module only calls by Victor Stinner · 13 years ago
  43. e5b99f0 Remove redundant includes of headers that are already included by Python.h. by Georg Brandl · 14 years ago
  44. 8d46e42 Merged revisions 86214 via svnmerge from by Antoine Pitrou · 14 years ago
  45. 39a6591 Issue #10311: The signal module now restores errno before returning from by Antoine Pitrou · 14 years ago
  46. 49d3f25 _PyImport_FixupExtension() and _PyImport_FindExtension() uses FS encoding by Victor Stinner · 14 years ago
  47. eccd4d9 Merged revisions 85140 via svnmerge from by Brian Curtin · 14 years ago
  48. 9e88b5a Fix #10003. Add SIGBREAK to the set of valid signals on Windows. by Brian Curtin · 14 years ago
  49. 912443c Merged revisions 84556 via svnmerge from by Brian Curtin · 14 years ago
  50. c734b31 Clean up the fix to #9324 with some of the suggestions raised on python-dev by Brian Curtin · 14 years ago
  51. b42a21d Include Windows.h for BOOL. 2.7 and 3.2 already had this due to by Brian Curtin · 14 years ago
  52. 3f004b1 Merged revisions 83763 via svnmerge from by Brian Curtin · 14 years ago
  53. ef9efbd Fix #9324: Add parameter validation to signal.signal on Windows in order by Brian Curtin · 14 years ago
  54. 6ed7ac4 Revert r82089. Commit was intended for a branch. by Jean-Paul Calderone · 14 years ago
  55. 867c435 merge forward from the python 2.x branch by Jean-Paul Calderone · 14 years ago
  56. 7f14f0d Recorded merge of revisions 81032 via svnmerge from by Antoine Pitrou · 14 years ago
  57. f95a1b3 Recorded merge of revisions 81029 via svnmerge from by Antoine Pitrou · 14 years ago
  58. 9c39bc7 Merged revisions 81016 via svnmerge from by Jean-Paul Calderone · 14 years ago
  59. 6f137ca Merged revisions 81007 via svnmerge from by Jean-Paul Calderone · 14 years ago
  60. eb24d74 Port #1220212 (os.kill for Win32) to py3k. by Brian Curtin · 14 years ago
  61. 2614cda Merged revisions 78338,78345-78346,78561-78562,78566,78574,78581,78634,78660,78675 via svnmerge from by Benjamin Peterson · 14 years ago
  62. a833206 Merged revisions 74745 via svnmerge from by Benjamin Peterson · 15 years ago
  63. 8719ad5 Merged revisions 74277,74321,74323,74326,74355,74465,74467,74488,74492,74513,74531,74549,74553,74625,74632,74643-74644,74647,74652,74666,74671,74727,74739 via svnmerge from by Benjamin Peterson · 15 years ago
  64. 1a8501c Merged revisions 66748 via svnmerge from by Christian Heimes · 16 years ago
  65. 2f99b24 Merged revisions 66006 via svnmerge from by Neal Norwitz · 16 years ago
  66. e68df0f Merged revisions 64212 via svnmerge from by Benjamin Peterson · 16 years ago
  67. 1a21451 Implement PEP 3121: new module initialization and finalization API. by Martin v. Löwis · 16 years ago
  68. 3bf3cc0 Merged revisions 61849 via svnmerge from by Martin v. Löwis · 16 years ago
  69. 823725e Merged revisions 61846-61847 via svnmerge from by Martin v. Löwis · 16 years ago
  70. 8640e74 Merged revisions 60481,60485,60489-60492,60494-60496,60498-60499,60501-60503,60505-60506,60508-60509,60523-60524,60532,60543,60545,60547-60548,60552,60554,60556-60559,60561-60562,60569,60571-60572,60574,60576-60583,60585-60586,60589,60591,60594-60595,60597-60598,60600-60601,60606-60612,60615,60617,60619-60621,60623-60625,60627-60629,60631,60633,60635,60647,60650,60652,60654,60656,60658-60659,60664-60666,60668-60670,60672,60676,60678,60680-60683,60685-60686,60688,60690,60692-60694,60697-60700,60705-60706,60708,60711,60714,60720,60724-60730,60732,60736,60742,60744,60746,60748,60750-60751,60753,60756-60757,60759-60761,60763-60764,60766,60769-60770,60774-60784,60787-60789,60793,60796,60799-60809,60812-60813,60815-60821,60823-60826,60828-60829,60831-60834,60836,60838-60839,60846-60849,60852-60854,60856-60859,60861-60870,60874-60875,60880-60881,60886,60888-60890,60892,60894-60898,60900,60902-60906,60908,60911-60917,60919-60920,60922,60926,60929-60931,60933-60935,60937,60939-60941,60943-60954,60959-60961,60963-60964,60966-60967,60971,60977,60979-60989 via svnmerge from by Christian Heimes · 16 years ago
  71. 5fb7c2a Merged revisions 59565-59594 via svnmerge from by Christian Heimes · 17 years ago
  72. b76922a Merged revisions 59450-59464 via svnmerge from by Christian Heimes · 17 years ago
  73. 217cfd1 Cleanup: Replaced most PyInt_ aliases with PyLong_ and disabled the aliases in intobject.h by Christian Heimes · 17 years ago
  74. 1ac754f Check return result from Py_InitModule*(). This API can fail. by Neal Norwitz · 19 years ago
  75. 8ee3e5a - Changes donated by Elemental Security to make it work on AIX 5.3 by Guido van Rossum · 19 years ago
  76. 9ceaa72 Patch #975056 - fixes for restartable signals on *BSD. In addition, by Anthony Baxter · 20 years ago
  77. 24ec211 silly typo by Michael W. Hudson · 20 years ago
  78. f37f37d Patch [ 776725 ] add SIGRTMIN, SIGRTMAX to signalmodule.c by Anthony Baxter · 21 years ago
  79. 43ed43b Take out my (long since disabled) POSIX signal mask handling code. by Michael W. Hudson · 21 years ago
  80. 6297a7a - PyEval_GetFrame() is now declared to return a PyFrameObject * by Guido van Rossum · 21 years ago
  81. fe51c6d Excise DL_EXPORT/DL_IMPORT from Modules/*. Required adding a prototype by Mark Hammond · 22 years ago
  82. 6238d2b Patch #569753: Remove support for WIN16. by Martin v. Löwis · 22 years ago
  83. 4178515 SF # 533070 Silence AIX C Compiler Warnings by Neal Norwitz · 22 years ago
  84. 14f8b4c Patch #568124: Add doc string macros. by Martin v. Löwis · 22 years ago
  85. 34f20ea This is patch by Michael W. Hudson · 22 years ago
  86. ba3a16c Remove METH_OLDARGS: by Neal Norwitz · 22 years ago
  87. 78662cf Add type cast. by Neil Schemenauer · 22 years ago
  88. 3a6f978 Remove many uses of PyArg_NoArgs macro, change METH_OLDARGS to METH_NOARGS. by Neal Norwitz · 22 years ago
  89. 7bf6833 OS/2 EMX port changes (Modules part of patch #450267): by Andrew MacIntyre · 22 years ago
  90. 175af25 Export SIGINFO. Fixes #502077. by Martin v. Löwis · 23 years ago
  91. cdc4451 Include <unistd.h> in Python.h. Fixes #500924. by Martin v. Löwis · 23 years ago
  92. 1ce3cf7 SF patch [#466877] SIGBREAK is missing from signal module. by Tim Peters · 23 years ago
  93. dff3a37 Make more warnings go away on the SGI compiler. by Fred Drake · 23 years ago
  94. f58de1b Document SIG_* warning causes on Solaris. by Martin v. Löwis · 23 years ago
  95. 9e8181b Make better use of GNU Pth -- patch by Andy Dustman. by Guido van Rossum · 24 years ago
  96. d2cd7ad Use typedef PyOS_sighandler_t and APIs PyOS_getsig() and by Guido van Rossum · 24 years ago
  97. 8586991 REMOVED all CWI, CNRI and BeOpen copyright markings. by Guido van Rossum · 24 years ago
  98. fee3a2d Charles Waldman's patch to reinitialize the interpreter lock after a by Guido van Rossum · 24 years ago
  99. a1abb72 Use METH_OLDARGS instead of numeric constant 0 in method def. tables by Andrew M. Kuchling · 24 years ago
  100. 334fb89 Use 'void' directly instead of the ANY #define, now that all code is ANSI C. by Thomas Wouters · 24 years ago