1. d508d00 Issue #28139: Merge indentation fixes from 3.5 into 3.6 by Martin Panter · 8 years ago
  2. 6d57fe1 Issue #28139: Fix messed up indentation by Martin Panter · 8 years ago
  3. 6782b14 Use PyModule_AddIntMacro() in signal module by Christian Heimes · 8 years ago
  4. 940f33a Issue #23524: Finish removing _PyVerify_fd from sources by Steve Dower · 8 years ago
  5. ca47063 replace Py_(u)intptr_t with the c99 standard types by Benjamin Peterson · 8 years ago
  6. 1a2b24f Issue #27332: Fixed the type of the first argument of module-level functions by Serhiy Storchaka · 8 years ago
  7. 57a01d3 Issue #26200: Added Py_SETREF and replaced Py_XSETREF with Py_SETREF by Serhiy Storchaka · 8 years ago
  8. 4884271 Issue #22570: Renamed Py_SETREF to Py_XSETREF. by Serhiy Storchaka · 8 years ago
  9. 5a57ade Issue #20440: Massive replacing unsafe attribute setting code with special by Serhiy Storchaka · 8 years ago
  10. 6b680cd Fixed compilation error in signalmodule.c (issue #20182). by Serhiy Storchaka · 9 years ago
  11. c7027b7 Issue #20182: converted the signal module to use Argument Clinic by Tal Einat · 9 years ago
  12. e72fe39 Issue #23836: Use _Py_write_noraise() to retry on EINTR in trip_signal() of by Victor Stinner · 9 years ago
  13. 6aa446c PEP 475: on EINTR, retry the function even if the timeout is equals to zero by Victor Stinner · 9 years ago
  14. e134a7f Issue #23752: _Py_fstat() is now responsible to raise the Python exception by Victor Stinner · 9 years ago
  15. 869e177 Issue #22117: Replace usage of _PyTime_ROUND_UP with _PyTime_ROUND_CEILING by Victor Stinner · 9 years ago
  16. 34dc0f4 Issue #22117: The signal modules uses the new _PyTime_t API by Victor Stinner · 9 years ago
  17. a453cd8 Issue #23715: signal.sigwaitinfo() and signal.sigtimedwait() are now retried by Victor Stinner · 9 years ago
  18. 8acde7d Issue #23524: Change back to using Windows errors for _Py_fstat instead of the errno shim. by Steve Dower · 9 years ago
  19. f2f373f Issue #23152: Implement _Py_fstat() to support files larger than 2 GB on Windows. by Steve Dower · 9 years ago
  20. cf40a9e Issue #23450: Fix signal.set_wakeup_fd() on Windows by Victor Stinner · 9 years ago
  21. d600951 Issue #22869: Split pythonrun into two modules by Nick Coghlan · 10 years ago
  22. 3822760 Issue #22042: signal.set_wakeup_fd(fd) now raises an exception if the file by Victor Stinner · 10 years ago
  23. 1151710 Issue #22018: On Windows, signal.set_wakeup_fd() now also supports sockets. by Victor Stinner · 10 years ago
  24. 1d8948e Backout 42ced0d023cd: oops, i didn't want to push this changeset :-/ by Victor Stinner · 10 years ago
  25. d18ccd1 tets by Victor Stinner · 10 years ago
  26. 0bffc94 Issue #22018: signal.set_wakeup_fd() now raises an OSError instead of a by Victor Stinner · 10 years ago
  27. 815a6f3 merge along w/ fix for issue #2107 (commit c9239171e429) by Brett Cannon · 10 years ago
  28. e09fb71 fix #21076: turn signal module constants into enums by Giampaolo Rodola' · 10 years ago
  29. 3c1b379 Issue #20320: select.select() and select.kqueue.control() now round the timeout by Victor Stinner · 10 years ago
  30. dfe98a1 Issue #20437: Fixed 22 potential bugs when deleting objects references. by Serhiy Storchaka · 10 years ago
  31. 505ff75 Issue #20437: Fixed 21 potential bugs when deleting objects references. by Serhiy Storchaka · 10 years ago
  32. 44ed3de Issue #18774: Remove last bits of GNU PTH thread code, patch by Vajrasky Kok. by Christian Heimes · 11 years ago
  33. 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
  34. 1c8f059 Issue #18520: Add a new PyStructSequence_InitType2() function, same than by Victor Stinner · 11 years ago
  35. 52c5f85 Issue #14173: Avoid crashing when reading a signal handler during interpreter shutdown. by Antoine Pitrou · 11 years ago
  36. c8c952c Issue #14173: Avoid crashing when reading a signal handler during interpreter shutdown. by Antoine Pitrou · 11 years ago
  37. 245bbee Merge. by Richard Oudkerk · 11 years ago
  38. 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
  39. 7faf705 Issue #17591: Use lowercase filenames when including Windows header files. by Antoine Pitrou · 11 years ago
  40. c2d0200 Issue #4591: Uid and gid values larger than 2**31 are supported now. by Serhiy Storchaka · 11 years ago
  41. 7cf5599 Issue #4591: Uid and gid values larger than 2**31 are supported now. by Serhiy Storchaka · 11 years ago
  42. 611afc1 Issue #17098: all modules should have __loader__ by Brett Cannon · 11 years ago
  43. 0ecd30b Issue #17098: Make sure every module has __loader__ defined. by Brett Cannon · 11 years ago
  44. 9f30abd merge 3.3 by Benjamin Peterson · 11 years ago
  45. c68a4a0 check windows fd validity (closes #16992) by Benjamin Peterson · 11 years ago
  46. 0b83224 Fixes issue #9535: Fix pending signals that have been received but not by Gregory P. Smith · 12 years ago
  47. 34b1495 Fixes issue #9535: Fix pending signals that have been received but not by Gregory P. Smith · 12 years ago
  48. 9463e3a Fixes issue #9535: Fix pending signals that have been received but not by Gregory P. Smith · 12 years ago
  49. 14c81ab #16135: Removal of OS/2 support (Modules/*) by Jesus Cea · 12 years ago
  50. 643cd68 Issue #13964: signal.sigtimedwait() timeout is now a float instead of a tuple by Victor Stinner · 12 years ago
  51. 3f32fc8 Merge. by Charles-François Natali · 12 years ago
  52. 6d0d24e Issue #13817: After fork(), reinit the ad-hoc TLS implementation earlier to fix by Charles-François Natali · 12 years ago
  53. 6dd381e Issue #12328: Under Windows, refactor handling of Ctrl-C events and by Antoine Pitrou · 13 years ago
  54. bc80822 Issue #12303: Add sigwaitinfo() and sigtimedwait() to the signal module. by Ross Lagerwall · 13 years ago
  55. 10c30d6 Issue #8407: signal.sigwait() releases the GIL by Victor Stinner · 13 years ago
  56. c13ef66 Issue #8407: Fix the signal handler of the signal module: if it is called by Victor Stinner · 13 years ago
  57. aedb282 (Merge 3.2) Issue #12060: Use sig_atomic_t type and volatile keyword in the by Victor Stinner · 13 years ago
  58. 5ebfe6d (Merge 3.1) Issue #12060: Use sig_atomic_t type and volatile keyword in the by Victor Stinner · 13 years ago
  59. 2ec6b17 Issue #12060: Use sig_atomic_t type and volatile keyword in the signal module. by Victor Stinner · 13 years ago
  60. 388196e Issue #12011: signal.signal() and signal.siginterrupt() raise an OSError, by Victor Stinner · 13 years ago
  61. 86e104a Issue #8407: Use an explicit cast for FreeBSD by Victor Stinner · 13 years ago
  62. d49b1f1 Issue #8407: The signal handler writes the signal number as a single byte by Victor Stinner · 13 years ago
  63. b3e7219 Issue #8407: Add pthread_kill(), sigpending() and sigwait() functions to the by Victor Stinner · 13 years ago
  64. 35b300c Issue #8407: signal.pthread_sigmask() returns a set instead of a list by Victor Stinner · 13 years ago
  65. d0e516d Issue #8407: pthread_sigmask() checks immediatly if signal handlers have been by Victor Stinner · 13 years ago
  66. 72c53b5 cleanup signalmodule.c: use PyModule_AddIntMacro() by Victor Stinner · 13 years ago
  67. a929335 Issue #8407, issue #11859: Add signal.pthread_sigmask() function to fetch by Victor Stinner · 13 years ago
  68. 0c759fe Issue #10517: After fork(), reinitialize the TLS used by the PyGILState_* by Antoine Pitrou · 13 years ago
  69. 27026f8 (Merge 3.1) Issue #11768: The signal handler of the signal module only calls by Victor Stinner · 13 years ago
  70. 6c9b35b Issue #11768: The signal handler of the signal module only calls by Victor Stinner · 13 years ago
  71. e5b99f0 Remove redundant includes of headers that are already included by Python.h. by Georg Brandl · 14 years ago
  72. 8d46e42 Merged revisions 86214 via svnmerge from by Antoine Pitrou · 14 years ago
  73. 39a6591 Issue #10311: The signal module now restores errno before returning from by Antoine Pitrou · 14 years ago
  74. 49d3f25 _PyImport_FixupExtension() and _PyImport_FindExtension() uses FS encoding by Victor Stinner · 14 years ago
  75. eccd4d9 Merged revisions 85140 via svnmerge from by Brian Curtin · 14 years ago
  76. 9e88b5a Fix #10003. Add SIGBREAK to the set of valid signals on Windows. by Brian Curtin · 14 years ago
  77. 912443c Merged revisions 84556 via svnmerge from by Brian Curtin · 14 years ago
  78. c734b31 Clean up the fix to #9324 with some of the suggestions raised on python-dev by Brian Curtin · 14 years ago
  79. b42a21d Include Windows.h for BOOL. 2.7 and 3.2 already had this due to by Brian Curtin · 14 years ago
  80. 3f004b1 Merged revisions 83763 via svnmerge from by Brian Curtin · 14 years ago
  81. ef9efbd Fix #9324: Add parameter validation to signal.signal on Windows in order by Brian Curtin · 14 years ago
  82. 6ed7ac4 Revert r82089. Commit was intended for a branch. by Jean-Paul Calderone · 14 years ago
  83. 867c435 merge forward from the python 2.x branch by Jean-Paul Calderone · 14 years ago
  84. 7f14f0d Recorded merge of revisions 81032 via svnmerge from by Antoine Pitrou · 14 years ago
  85. f95a1b3 Recorded merge of revisions 81029 via svnmerge from by Antoine Pitrou · 14 years ago
  86. 9c39bc7 Merged revisions 81016 via svnmerge from by Jean-Paul Calderone · 14 years ago
  87. 6f137ca Merged revisions 81007 via svnmerge from by Jean-Paul Calderone · 14 years ago
  88. eb24d74 Port #1220212 (os.kill for Win32) to py3k. by Brian Curtin · 14 years ago
  89. 2614cda Merged revisions 78338,78345-78346,78561-78562,78566,78574,78581,78634,78660,78675 via svnmerge from by Benjamin Peterson · 14 years ago
  90. a833206 Merged revisions 74745 via svnmerge from by Benjamin Peterson · 15 years ago
  91. 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
  92. 1a8501c Merged revisions 66748 via svnmerge from by Christian Heimes · 16 years ago
  93. 2f99b24 Merged revisions 66006 via svnmerge from by Neal Norwitz · 16 years ago
  94. e68df0f Merged revisions 64212 via svnmerge from by Benjamin Peterson · 16 years ago
  95. 1a21451 Implement PEP 3121: new module initialization and finalization API. by Martin v. Löwis · 16 years ago
  96. 3bf3cc0 Merged revisions 61849 via svnmerge from by Martin v. Löwis · 16 years ago
  97. 823725e Merged revisions 61846-61847 via svnmerge from by Martin v. Löwis · 16 years ago
  98. 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
  99. 5fb7c2a Merged revisions 59565-59594 via svnmerge from by Christian Heimes · 16 years ago
  100. b76922a Merged revisions 59450-59464 via svnmerge from by Christian Heimes · 16 years ago