1. 410dd7d Issue #12058: Minor edits to comments in faulthandler by Victor Stinner · 13 years ago
  2. 9dd41fa Merge from 3.2 by Kurt B. Kaiser · 13 years ago
  3. bc3e138 Merge from 3.1 by Kurt B. Kaiser · 13 years ago
  4. e147806 Issue #1028: Tk returns invalid Unicode null in %A: UnicodeDecodeError. by Kurt B. Kaiser · 13 years ago
  5. f8d6fd6 #12051: merge with 3.2. by Ezio Melotti · 13 years ago
  6. f188bc5 #12051: merge with 3.1. by Ezio Melotti · 13 years ago
  7. 1367265 #12051: Fix segfault in json.dumps() while encoding highly-nested objects using the C accelerations. by Ezio Melotti · 13 years ago
  8. 3cade99 Issue #8498: In socket.accept(), allow to specify 0 as a backlog value in by Antoine Pitrou · 13 years ago
  9. 1be815a Issue #8498: In socket.accept(), allow to specify 0 as a backlog value in by Antoine Pitrou · 13 years ago
  10. 388196e Issue #12011: signal.signal() and signal.siginterrupt() raise an OSError, by Victor Stinner · 13 years ago
  11. 00bc6cc faulthandler: improve_sigabrt() on Visual Studio by Victor Stinner · 13 years ago
  12. 17ca323 (Merge 3.1) Issue #12012: ssl.PROTOCOL_SSLv2 becomes optional by Victor Stinner · 13 years ago
  13. ee18b6f Issue #12012: ssl.PROTOCOL_SSLv2 becomes optional by Victor Stinner · 13 years ago
  14. 2341f9b Remove dead code from _multiprocessing by Antoine Pitrou · 13 years ago
  15. 87cf220 Issue #11743: Rewrite multiprocessing connection classes in pure Python. by Antoine Pitrou · 13 years ago
  16. 86e104a Issue #8407: Use an explicit cast for FreeBSD by Victor Stinner · 13 years ago
  17. e0c9a75 faulthandler: make quiet a gcc 4.6 warning (z was unused) by Victor Stinner · 13 years ago
  18. 8f9f8d6 Issue #11888: Use system log2() when available by Victor Stinner · 13 years ago
  19. 936d518 #10811: Fix recursive usage of cursors. Instead of crashing, raise a ProgrammingError now. by Gerhard Haering · 13 years ago
  20. 83b8c0b Grammatical fix for a comment for log2, to avoid referring to an *algorithm* as monotonic. by Mark Dickinson · 13 years ago
  21. 2344258 Fix cut-and-paste typo in comment: log10 -> log2. by Mark Dickinson · 13 years ago
  22. fa0e3d5 Issue #11888: Add log2 function to math module. Patch written by Mark Dickinson. by Victor Stinner · 13 years ago
  23. 3de4919 Issue #12012: ssl.PROTOCOL_SSLv2 becomes optional by Victor Stinner · 13 years ago
  24. d49b1f1 Issue #8407: The signal handler writes the signal number as a single byte by Victor Stinner · 13 years ago
  25. b3e7219 Issue #8407: Add pthread_kill(), sigpending() and sigwait() functions to the by Victor Stinner · 13 years ago
  26. 9c18778 #12017: merge with 3.2. by Ezio Melotti · 13 years ago
  27. 06383ee #12017: merge with 3.1. by Ezio Melotti · 13 years ago
  28. 362b951 #12017: Fix segfault in json.loads() while decoding highly-nested objects using the C accelerations. by Ezio Melotti · 13 years ago
  29. 7bba62f faulthandler: dump all threads by default by Victor Stinner · 13 years ago
  30. c925617 faulthandler: save/restore errno in the two signal handlers by Victor Stinner · 13 years ago
  31. 97c3eb4 Closes Issue 11916: Add a number of MacOSX specific definitions to the errno module. by Ronald Oussoren · 13 years ago
  32. 35b300c Issue #8407: signal.pthread_sigmask() returns a set instead of a list by Victor Stinner · 13 years ago
  33. d0e516d Issue #8407: pthread_sigmask() checks immediatly if signal handlers have been by Victor Stinner · 13 years ago
  34. 66746cb Removed unused variable by Alexander Belopolsky · 13 years ago
  35. 89da349 Issue #11930: Remove year >= 1000 limitation from datetime.strftime. by Alexander Belopolsky · 13 years ago
  36. 09a98a9 merge by Alexander Belopolsky · 13 years ago
  37. 03163ac Issue #11930: Remove deprecated time.accept2dyear. by Alexander Belopolsky · 13 years ago
  38. 72c53b5 cleanup signalmodule.c: use PyModule_AddIntMacro() by Victor Stinner · 13 years ago
  39. fadeeff (Merge 3.2) Issue #11277: mmap.mmap() calls fcntl(fd, F_FULLFSYNC) on Mac OS X by Victor Stinner · 13 years ago
  40. 8108e96 (Merge 3.1) Issue #11277: mmap.mmap() calls fcntl(fd, F_FULLFSYNC) on Mac OS X by Victor Stinner · 13 years ago
  41. a6cd0cf Issue #11277: mmap calls fcntl(fd, F_FULLFSYNC) on Mac OS X to get around a by Victor Stinner · 13 years ago
  42. a929335 Issue #8407, issue #11859: Add signal.pthread_sigmask() function to fetch by Victor Stinner · 13 years ago
  43. d5c355c Issue #11223: Replace threading._info() by sys.thread_info by Victor Stinner · 13 years ago
  44. 9ea1c8d Issue #10517: After fork(), reinitialize the TLS used by the PyGILState_* by Antoine Pitrou · 13 years ago
  45. 0c759fe Issue #10517: After fork(), reinitialize the TLS used by the PyGILState_* by Antoine Pitrou · 13 years ago
  46. 66299a4 Fix compilation of _testembed.c without threads by Victor Stinner · 13 years ago
  47. b90db4c Issue #11918: OS/2 and VMS are no more supported because of the lack of by Victor Stinner · 13 years ago
  48. eec6060 Issue #10914: Add a minimal embedding test to test_capi. by Antoine Pitrou · 13 years ago
  49. 8e60577 Issue #10914: Add a minimal embedding test to test_capi. by Antoine Pitrou · 13 years ago
  50. f645451 Issue #11856: Speed up parsing of JSON numbers. by Antoine Pitrou · 13 years ago
  51. c2824d4 Issue #11915: threading.RLock()._release_save() raises a RuntimeError if the by Victor Stinner · 13 years ago
  52. 877509a Issue #11382: Trivial system calls, such as dup() or pipe(), needn't by Antoine Pitrou · 13 years ago
  53. a154b5c Simplify _count_elements() in _collections by Victor Stinner · 13 years ago
  54. 754851f Issue #11223: Add threading._info() function providing informations about the by Victor Stinner · 13 years ago
  55. cf2a807 faulthandler: don't use sigprocmask() by Victor Stinner · 13 years ago
  56. ff1a735 os.sendfile(): on Linux if offset parameter is passed as NULL we were erroneously returning a (bytes_sent, None) tuple instead of bytes_sent by Giampaolo Rodola' · 13 years ago
  57. ce16be9 (Merge 3.2) Issue #11768: The signal handler of the signal module only calls by Victor Stinner · 13 years ago
  58. 27026f8 (Merge 3.1) Issue #11768: The signal handler of the signal module only calls by Victor Stinner · 13 years ago
  59. 6c9b35b Issue #11768: The signal handler of the signal module only calls by Victor Stinner · 13 years ago
  60. ea4b46f Fix 64-bit safety issue in BZ2Compressor and BZ2Decompressor. by Nadeem Vawda · 13 years ago
  61. d60b74c Merge with 3.2. by Ezio Melotti · 13 years ago
  62. fdb2df4 Remove unnecessary call to PyErr_Clear. by Ezio Melotti · 13 years ago
  63. 131a641 Issue #11757: select.select() now raises ValueError when a negative timeout by Antoine Pitrou · 13 years ago
  64. a563286 Fix nit (make spelling consistent in prototype) by Raymond Hettinger · 13 years ago
  65. a4de6d8 Improve faulthandler.enable(all_threads=True) by Victor Stinner · 13 years ago
  66. c790a53 faulthandler: dump_tracebacks_later() displays also the timeout by Victor Stinner · 13 years ago
  67. 9418932 faulthandler: fix variable name, timeout_ms => timeout_us by Victor Stinner · 13 years ago
  68. de10f40 faulthandler: one more time, fix usage of locks in the watchdog thread by Victor Stinner · 13 years ago
  69. cfa7123 faulthandler: fix unregister() if it is called before register() by Victor Stinner · 13 years ago
  70. ff4cd88 faulthandler: fix compilating without threads by Victor Stinner · 13 years ago
  71. 44e31ba faulthandler: we don't use (or need) SA_SIGINFO flag of sigaction() by Victor Stinner · 13 years ago
  72. 9699440 faulthandler: check PyThreadState_Get() result in dump_tracebacks_later() by Victor Stinner · 13 years ago
  73. 736975a merge from 3.2 by Senthil Kumaran · 13 years ago
  74. ae664fb Merge from 3.1 by Senthil Kumaran · 13 years ago
  75. 8f377a3 Issue #10762: Guard against invalid/non-supported format string '%f' on Windows. Patch Santoso Wijaya. by Senthil Kumaran · 13 years ago
  76. 28deea1 Issue #11576: Fixed timedelta subtraction glitch on big timedelta values by Alexander Belopolsky · 13 years ago
  77. b6f5ec7 Issue #11576: Fixed timedelta subtraction glitch on big timedelta values by Alexander Belopolsky · 13 years ago
  78. 3bd9729 implement tp_clear by Benjamin Peterson · 13 years ago
  79. 446c8d5 Issue #11707: Fix compilation errors with Visual Studio by Victor Stinner · 13 years ago
  80. 7ab9e22 Issue #11707: Fast C version of functools.cmp_to_key() by Raymond Hettinger · 13 years ago
  81. 7f2fee3 Issue #10785: Store the filename as Unicode in the Python parser. by Victor Stinner · 13 years ago
  82. da9edae Issue #11753: faulthandler thread uses pthread_sigmask() by Victor Stinner · 13 years ago
  83. 5bfa062 Issue #11688: Add sqlite3.Connection.set_trace_callback(). Patch by Torsten Landschoff. by Antoine Pitrou · 13 years ago
  84. a7caec7 Merge fix for issue #11746 by Antoine Pitrou · 13 years ago
  85. 9c25486 Issue #11746: Fix SSLContext.load_cert_chain() to accept elliptic curve private keys. by Antoine Pitrou · 13 years ago
  86. 37dc5f8 Issue #5863: Rewrite BZ2File in pure Python, and allow it to accept by Antoine Pitrou · 13 years ago
  87. 44378d4 Issue #11393: signal of user signal displays tracebacks even if tstate==NULL by Victor Stinner · 13 years ago
  88. a01ca12 Issue #11393: Fix faulthandler.disable() and add a test by Victor Stinner · 13 years ago
  89. d727e23 Issue #11393: The fault handler handles also SIGABRT by Victor Stinner · 13 years ago
  90. bc6a4db Issue #11393: fault handler uses raise(signum) for SIGILL on Windows by Victor Stinner · 13 years ago
  91. f309134 Issue #11393: fix usage of locks in faulthandler by Victor Stinner · 13 years ago
  92. a4d4f1b Issue #11393: New try to fix faulthandler_thread() by Victor Stinner · 13 years ago
  93. 1c76b7f Issue #11393: Fix faulthandler_thread(): release cancel lock before join lock by Victor Stinner · 13 years ago
  94. f048075 Issue #11393: limit stack overflow test to 100 MB by Victor Stinner · 13 years ago
  95. 702624e Issue #11393: Fix the documentation (cancel_dump_traceback_later) by Victor Stinner · 13 years ago
  96. 024e37a Issue #11393: Add the new faulthandler module by Victor Stinner · 13 years ago
  97. 8c5b748 Merge by Kristjan Valur Jonsson · 13 years ago
  98. d055956 Merge 3.1 by Kristjan Valur Jonsson · 13 years ago
  99. 3c136e1 Merge by Kristjan Valur Jonsson · 13 years ago
  100. 978da33 Merge 3.2 by Kristjan Valur Jonsson · 13 years ago