1. 940f33a Issue #23524: Finish removing _PyVerify_fd from sources by Steve Dower · 8 years ago
  2. ca47063 replace Py_(u)intptr_t with the c99 standard types by Benjamin Peterson · 8 years ago
  3. 3466bde Avoid calling functions with an empty string as format string by Victor Stinner · 8 years ago
  4. bc73150 - make some internal symbols static by doko@ubuntu.com · 8 years ago
  5. b6a9c97 Issue #26778: Fixed "a/an/and" typos in code comment, documentation and error by Serhiy Storchaka · 8 years ago
  6. 6a7b3a7 Issue #26778: Fixed "a/an/and" typos in code comment and documentation. by Serhiy Storchaka · 8 years ago
  7. ec39756 Issue #22570: Renamed Py_SETREF to Py_XSETREF. by Serhiy Storchaka · 8 years ago
  8. 4884271 Issue #22570: Renamed Py_SETREF to Py_XSETREF. by Serhiy Storchaka · 8 years ago
  9. 82d44f0 Issue #23848: Fix usage of _Py_DumpDecimal() by Victor Stinner · 8 years ago
  10. 928ad28 Issue #23848: Try to fix test_faulthandler on ARM by Victor Stinner · 8 years ago
  11. 412a5e7 faulthandler: only log fatal exceptions by Victor Stinner · 8 years ago
  12. 404cdc5 faulthandler: add Windows exception handler by Victor Stinner · 8 years ago
  13. 861d9ab faulthandler now works in non-Python threads by Victor Stinner · 8 years ago
  14. 57003f8 faulthandler: Test Py_FatalError() with GIL released by Victor Stinner · 8 years ago
  15. bfd316e Add _PyThreadState_UncheckedGet() by Victor Stinner · 8 years ago
  16. 5a57ade Issue #20440: Massive replacing unsafe attribute setting code with special by Serhiy Storchaka · 8 years ago
  17. ac5569b Issue #24115: Update uses of PyObject_IsTrue(), PyObject_Not(), by Serhiy Storchaka · 9 years ago
  18. fa494fd Issue #24115: Update uses of PyObject_IsTrue(), PyObject_Not(), by Serhiy Storchaka · 9 years ago
  19. c7489a5 Issue #23836: Fix the faulthandler module to handle reentrant calls by Victor Stinner · 9 years ago
  20. d1f3a00 Merge 3.4 (faulthandler ICC) by Victor Stinner · 9 years ago
  21. 19276f1 Issue #23654: Fix faulthandler._stack_overflow() for the Intel C Compiler (ICC) by Victor Stinner · 9 years ago
  22. 95bb714 Issue #23566: enable(), register(), dump_traceback() and dump_traceback_later() by Victor Stinner · 9 years ago
  23. 53fa8b2 Fixed few compiler warnings. by Serhiy Storchaka · 9 years ago
  24. 385efb4 Merge 3.4 (faulthandler) by Victor Stinner · 9 years ago
  25. 7a5567a Issue #23433: Fix faulthandler._stack_overflow() by Victor Stinner · 9 years ago
  26. 6b8e0ed (Merge 3.4) faulthandler: test_gil_released() now uses _sigsegv() instead of by Victor Stinner · 10 years ago
  27. 5083828 faulthandler: test_gil_released() now uses _sigsegv() instead of _read_null(), by Victor Stinner · 10 years ago
  28. 9db521c faulthandler: _sigsegv() and _sigabrt() don't accept parameters by Victor Stinner · 10 years ago
  29. 7a39912 faulthandler: suppress crash reporter directly in test functions written to by Victor Stinner · 10 years ago
  30. 56e8c29 Issue #22018: Add _testcapi.raise_signal() by Victor Stinner · 10 years ago
  31. e2d6690 Issue #21497: faulthandler functions now raise a better error if sys.stderr is by Victor Stinner · 10 years ago
  32. 3c2a178 Merge: #19970: Fix some comment typos. by R David Murray · 10 years ago
  33. fc06999 #19970: Fix some comment typos. by R David Murray · 10 years ago
  34. bd303c1 Issue #19512, #19515: remove shared identifiers, move identifiers where they by Victor Stinner · 11 years ago
  35. 0905437 Issue #19512: add some common identifiers to only create common strings once, by Victor Stinner · 11 years ago
  36. 8898350 Close #18957: The PYTHONFAULTHANDLER environment variable now only enables the by Victor Stinner · 11 years ago
  37. 49fc8ec Issue #18203: Add _PyMem_RawStrdup() and _PyMem_Strdup() by Victor Stinner · 11 years ago
  38. 0857ab4 (Merge 3.3) Issue #18343: faulthandler.register() now keeps the previous signal by Victor Stinner · 11 years ago
  39. 8d37954 Issue #18343: faulthandler.register() now keeps the previous signal handler by Victor Stinner · 11 years ago
  40. 56cb125 Issue #9566: Explicit downcast to fix compiler warnings on Win64 by Victor Stinner · 12 years ago
  41. 14c81ab #16135: Removal of OS/2 support (Modules/*) by Jesus Cea · 12 years ago
  42. deb92b5 Closes #15969: rename new API to have consistent names in the faulthandler module. by Georg Brandl · 12 years ago
  43. 3cc635d faulthandler: fix the handler of user signals by Victor Stinner · 12 years ago
  44. 98a387b Fix the user signal handler of faulthandler by Victor Stinner · 12 years ago
  45. 55bce63 Issue #14154: Reimplement the bigmem test memory watchdog as a subprocess. by Charles-François Natali · 12 years ago
  46. a247720 Issue #13874: read_null() of faulthandler uses volatile to avoid optimisation by Victor Stinner · 12 years ago
  47. 1134b0d Fix _PyFaulthandler_Fini() so it can be called before _PyFaulthandler_Init() by Victor Stinner · 12 years ago
  48. bd928fe Rename _Py_identifier to _Py_IDENTIFIER. by Martin v. Löwis · 13 years ago
  49. afe55bb Add API for static strings, primarily good for identifiers. by Martin v. Löwis · 13 years ago
  50. b244d07 Fix compilation error under Windows by Antoine Pitrou · 13 years ago
  51. 75e78b6 Use the faulthandler module's infrastructure to write a GIL-less by Antoine Pitrou · 13 years ago
  52. 6394188 Use the new Py_ARRAY_LENGTH macro by Victor Stinner · 13 years ago
  53. 425fcd3 Issue #12929: faulthandler now uses char* for arithmetic on pointers by Victor Stinner · 13 years ago
  54. a9a9dab Issue #12550: Add chain optional argument to faulthandler.register() by Victor Stinner · 13 years ago
  55. 0aafa4f faulthandler: add missing include, pthread.h, for FreeBSD 6 by Victor Stinner · 13 years ago
  56. 25095b2 Remove useless assignments by Victor Stinner · 13 years ago
  57. 9b49304 Close #12153: faulthandler, mark stack_overflow() as static by Victor Stinner · 13 years ago
  58. 410dd7d Issue #12058: Minor edits to comments in faulthandler by Victor Stinner · 13 years ago
  59. 00bc6cc faulthandler: improve_sigabrt() on Visual Studio by Victor Stinner · 13 years ago
  60. e0c9a75 faulthandler: make quiet a gcc 4.6 warning (z was unused) by Victor Stinner · 13 years ago
  61. 7bba62f faulthandler: dump all threads by default by Victor Stinner · 13 years ago
  62. c925617 faulthandler: save/restore errno in the two signal handlers by Victor Stinner · 13 years ago
  63. cf2a807 faulthandler: don't use sigprocmask() by Victor Stinner · 13 years ago
  64. a4de6d8 Improve faulthandler.enable(all_threads=True) by Victor Stinner · 13 years ago
  65. c790a53 faulthandler: dump_tracebacks_later() displays also the timeout by Victor Stinner · 13 years ago
  66. 9418932 faulthandler: fix variable name, timeout_ms => timeout_us by Victor Stinner · 13 years ago
  67. de10f40 faulthandler: one more time, fix usage of locks in the watchdog thread by Victor Stinner · 13 years ago
  68. cfa7123 faulthandler: fix unregister() if it is called before register() by Victor Stinner · 13 years ago
  69. ff4cd88 faulthandler: fix compilating without threads by Victor Stinner · 13 years ago
  70. 44e31ba faulthandler: we don't use (or need) SA_SIGINFO flag of sigaction() by Victor Stinner · 13 years ago
  71. 9699440 faulthandler: check PyThreadState_Get() result in dump_tracebacks_later() by Victor Stinner · 13 years ago
  72. da9edae Issue #11753: faulthandler thread uses pthread_sigmask() by Victor Stinner · 13 years ago
  73. 44378d4 Issue #11393: signal of user signal displays tracebacks even if tstate==NULL by Victor Stinner · 13 years ago
  74. a01ca12 Issue #11393: Fix faulthandler.disable() and add a test by Victor Stinner · 13 years ago
  75. d727e23 Issue #11393: The fault handler handles also SIGABRT by Victor Stinner · 13 years ago
  76. bc6a4db Issue #11393: fault handler uses raise(signum) for SIGILL on Windows by Victor Stinner · 13 years ago
  77. f309134 Issue #11393: fix usage of locks in faulthandler by Victor Stinner · 13 years ago
  78. a4d4f1b Issue #11393: New try to fix faulthandler_thread() by Victor Stinner · 13 years ago
  79. 1c76b7f Issue #11393: Fix faulthandler_thread(): release cancel lock before join lock by Victor Stinner · 13 years ago
  80. f048075 Issue #11393: limit stack overflow test to 100 MB by Victor Stinner · 13 years ago
  81. 702624e Issue #11393: Fix the documentation (cancel_dump_traceback_later) by Victor Stinner · 13 years ago
  82. 024e37a Issue #11393: Add the new faulthandler module by Victor Stinner · 13 years ago