1. 5ebfe6d (Merge 3.1) Issue #12060: Use sig_atomic_t type and volatile keyword in the by Victor Stinner · 13 years ago
  2. 2ec6b17 Issue #12060: Use sig_atomic_t type and volatile keyword in the signal module. by Victor Stinner · 13 years ago
  3. 5ed2e77 Issue #1746656: Add if_nameindex, if_nametoindex, if_indextoname by Gregory P. Smith · 13 years ago
  4. ccb33bf Merge: #8650: Make zlib.[de]compressobj().[de]compress() 64-bit clean. by Nadeem Vawda · 13 years ago
  5. 565d659 Merge: #8650: Make zlib.[de]compressobj().[de]compress() 64-bit clean. by Nadeem Vawda · 13 years ago
  6. 0c3d96a Issue #8650: Make zlib.[de]compressobj().[de]compress() 64-bit clean. by Nadeem Vawda · 13 years ago
  7. 905cca0 Merge fix for memory leaks in zlib.compress() and .decompress(). by Nadeem Vawda · 13 years ago
  8. 154bdf9 Fix memory leaks in zlib.compress() and .decompress(). by Nadeem Vawda · 13 years ago
  9. 1b8a417 Issue #8650: Backport 64-bit safety fixes for compress() and decompress(). by Nadeem Vawda · 13 years ago
  10. 9c405c4 Merge: #12050: zlib.decompressobj().decompress() now clears the unconsumed_tail by Nadeem Vawda · 13 years ago
  11. 5eef502 Merge: #12050: zlib.decompressobj().decompress() now clears the unconsumed_tail by Nadeem Vawda · 13 years ago
  12. 7619e88 Issue #12050: zlib.decompressobj().decompress() now clears the unconsumed_tail by Nadeem Vawda · 13 years ago
  13. b89b31a Issue #12062: Fix a flushing bug when doing a certain type of I/O sequence by Antoine Pitrou · 13 years ago
  14. 00dd182 Issue #12062: Fix a flushing bug when doing a certain type of I/O sequence by Antoine Pitrou · 13 years ago
  15. 7c40489 Issue #12062: Fix a flushing bug when doing a certain type of I/O sequence by Antoine Pitrou · 13 years ago
  16. 4e19e11 Fix compile error under Windows by Antoine Pitrou · 13 years ago
  17. 3486a98 Issue #9971: Write an optimized implementation of BufferedReader.readinto(). by Antoine Pitrou · 13 years ago
  18. 410dd7d Issue #12058: Minor edits to comments in faulthandler by Victor Stinner · 13 years ago
  19. 9dd41fa Merge from 3.2 by Kurt B. Kaiser · 13 years ago
  20. bc3e138 Merge from 3.1 by Kurt B. Kaiser · 13 years ago
  21. e147806 Issue #1028: Tk returns invalid Unicode null in %A: UnicodeDecodeError. by Kurt B. Kaiser · 13 years ago
  22. f8d6fd6 #12051: merge with 3.2. by Ezio Melotti · 13 years ago
  23. f188bc5 #12051: merge with 3.1. by Ezio Melotti · 13 years ago
  24. 1367265 #12051: Fix segfault in json.dumps() while encoding highly-nested objects using the C accelerations. by Ezio Melotti · 13 years ago
  25. 3cade99 Issue #8498: In socket.accept(), allow to specify 0 as a backlog value in by Antoine Pitrou · 13 years ago
  26. 1be815a Issue #8498: In socket.accept(), allow to specify 0 as a backlog value in by Antoine Pitrou · 13 years ago
  27. 388196e Issue #12011: signal.signal() and signal.siginterrupt() raise an OSError, by Victor Stinner · 13 years ago
  28. 00bc6cc faulthandler: improve_sigabrt() on Visual Studio by Victor Stinner · 13 years ago
  29. 17ca323 (Merge 3.1) Issue #12012: ssl.PROTOCOL_SSLv2 becomes optional by Victor Stinner · 13 years ago
  30. ee18b6f Issue #12012: ssl.PROTOCOL_SSLv2 becomes optional by Victor Stinner · 13 years ago
  31. 2341f9b Remove dead code from _multiprocessing by Antoine Pitrou · 13 years ago
  32. 87cf220 Issue #11743: Rewrite multiprocessing connection classes in pure Python. by Antoine Pitrou · 13 years ago
  33. 86e104a Issue #8407: Use an explicit cast for FreeBSD by Victor Stinner · 13 years ago
  34. e0c9a75 faulthandler: make quiet a gcc 4.6 warning (z was unused) by Victor Stinner · 13 years ago
  35. 8f9f8d6 Issue #11888: Use system log2() when available by Victor Stinner · 13 years ago
  36. 936d518 #10811: Fix recursive usage of cursors. Instead of crashing, raise a ProgrammingError now. by Gerhard Haering · 13 years ago
  37. 83b8c0b Grammatical fix for a comment for log2, to avoid referring to an *algorithm* as monotonic. by Mark Dickinson · 13 years ago
  38. 2344258 Fix cut-and-paste typo in comment: log10 -> log2. by Mark Dickinson · 13 years ago
  39. fa0e3d5 Issue #11888: Add log2 function to math module. Patch written by Mark Dickinson. by Victor Stinner · 13 years ago
  40. 3de4919 Issue #12012: ssl.PROTOCOL_SSLv2 becomes optional by Victor Stinner · 13 years ago
  41. d49b1f1 Issue #8407: The signal handler writes the signal number as a single byte by Victor Stinner · 13 years ago
  42. b3e7219 Issue #8407: Add pthread_kill(), sigpending() and sigwait() functions to the by Victor Stinner · 13 years ago
  43. 9c18778 #12017: merge with 3.2. by Ezio Melotti · 13 years ago
  44. 06383ee #12017: merge with 3.1. by Ezio Melotti · 13 years ago
  45. 362b951 #12017: Fix segfault in json.loads() while decoding highly-nested objects using the C accelerations. by Ezio Melotti · 13 years ago
  46. 7bba62f faulthandler: dump all threads by default by Victor Stinner · 13 years ago
  47. c925617 faulthandler: save/restore errno in the two signal handlers by Victor Stinner · 13 years ago
  48. 97c3eb4 Closes Issue 11916: Add a number of MacOSX specific definitions to the errno module. by Ronald Oussoren · 13 years ago
  49. 35b300c Issue #8407: signal.pthread_sigmask() returns a set instead of a list by Victor Stinner · 13 years ago
  50. d0e516d Issue #8407: pthread_sigmask() checks immediatly if signal handlers have been by Victor Stinner · 13 years ago
  51. 66746cb Removed unused variable by Alexander Belopolsky · 13 years ago
  52. 89da349 Issue #11930: Remove year >= 1000 limitation from datetime.strftime. by Alexander Belopolsky · 13 years ago
  53. 09a98a9 merge by Alexander Belopolsky · 13 years ago
  54. 03163ac Issue #11930: Remove deprecated time.accept2dyear. by Alexander Belopolsky · 13 years ago
  55. 72c53b5 cleanup signalmodule.c: use PyModule_AddIntMacro() by Victor Stinner · 13 years ago
  56. fadeeff (Merge 3.2) Issue #11277: mmap.mmap() calls fcntl(fd, F_FULLFSYNC) on Mac OS X by Victor Stinner · 13 years ago
  57. 8108e96 (Merge 3.1) Issue #11277: mmap.mmap() calls fcntl(fd, F_FULLFSYNC) on Mac OS X by Victor Stinner · 13 years ago
  58. a6cd0cf Issue #11277: mmap calls fcntl(fd, F_FULLFSYNC) on Mac OS X to get around a by Victor Stinner · 13 years ago
  59. a929335 Issue #8407, issue #11859: Add signal.pthread_sigmask() function to fetch by Victor Stinner · 13 years ago
  60. d5c355c Issue #11223: Replace threading._info() by sys.thread_info by Victor Stinner · 13 years ago
  61. 9ea1c8d Issue #10517: After fork(), reinitialize the TLS used by the PyGILState_* by Antoine Pitrou · 13 years ago
  62. 0c759fe Issue #10517: After fork(), reinitialize the TLS used by the PyGILState_* by Antoine Pitrou · 13 years ago
  63. 66299a4 Fix compilation of _testembed.c without threads by Victor Stinner · 13 years ago
  64. b90db4c Issue #11918: OS/2 and VMS are no more supported because of the lack of by Victor Stinner · 13 years ago
  65. eec6060 Issue #10914: Add a minimal embedding test to test_capi. by Antoine Pitrou · 13 years ago
  66. 8e60577 Issue #10914: Add a minimal embedding test to test_capi. by Antoine Pitrou · 13 years ago
  67. f645451 Issue #11856: Speed up parsing of JSON numbers. by Antoine Pitrou · 13 years ago
  68. c2824d4 Issue #11915: threading.RLock()._release_save() raises a RuntimeError if the by Victor Stinner · 13 years ago
  69. 877509a Issue #11382: Trivial system calls, such as dup() or pipe(), needn't by Antoine Pitrou · 13 years ago
  70. a154b5c Simplify _count_elements() in _collections by Victor Stinner · 13 years ago
  71. 754851f Issue #11223: Add threading._info() function providing informations about the by Victor Stinner · 13 years ago
  72. cf2a807 faulthandler: don't use sigprocmask() by Victor Stinner · 13 years ago
  73. 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
  74. ce16be9 (Merge 3.2) Issue #11768: The signal handler of the signal module only calls by Victor Stinner · 13 years ago
  75. 27026f8 (Merge 3.1) Issue #11768: The signal handler of the signal module only calls by Victor Stinner · 13 years ago
  76. 6c9b35b Issue #11768: The signal handler of the signal module only calls by Victor Stinner · 13 years ago
  77. ea4b46f Fix 64-bit safety issue in BZ2Compressor and BZ2Decompressor. by Nadeem Vawda · 13 years ago
  78. d60b74c Merge with 3.2. by Ezio Melotti · 13 years ago
  79. fdb2df4 Remove unnecessary call to PyErr_Clear. by Ezio Melotti · 13 years ago
  80. 131a641 Issue #11757: select.select() now raises ValueError when a negative timeout by Antoine Pitrou · 13 years ago
  81. a563286 Fix nit (make spelling consistent in prototype) by Raymond Hettinger · 13 years ago
  82. a4de6d8 Improve faulthandler.enable(all_threads=True) by Victor Stinner · 13 years ago
  83. c790a53 faulthandler: dump_tracebacks_later() displays also the timeout by Victor Stinner · 13 years ago
  84. 9418932 faulthandler: fix variable name, timeout_ms => timeout_us by Victor Stinner · 13 years ago
  85. de10f40 faulthandler: one more time, fix usage of locks in the watchdog thread by Victor Stinner · 13 years ago
  86. cfa7123 faulthandler: fix unregister() if it is called before register() by Victor Stinner · 13 years ago
  87. ff4cd88 faulthandler: fix compilating without threads by Victor Stinner · 13 years ago
  88. 44e31ba faulthandler: we don't use (or need) SA_SIGINFO flag of sigaction() by Victor Stinner · 13 years ago
  89. 9699440 faulthandler: check PyThreadState_Get() result in dump_tracebacks_later() by Victor Stinner · 13 years ago
  90. 736975a merge from 3.2 by Senthil Kumaran · 13 years ago
  91. ae664fb Merge from 3.1 by Senthil Kumaran · 13 years ago
  92. 8f377a3 Issue #10762: Guard against invalid/non-supported format string '%f' on Windows. Patch Santoso Wijaya. by Senthil Kumaran · 13 years ago
  93. 28deea1 Issue #11576: Fixed timedelta subtraction glitch on big timedelta values by Alexander Belopolsky · 13 years ago
  94. b6f5ec7 Issue #11576: Fixed timedelta subtraction glitch on big timedelta values by Alexander Belopolsky · 13 years ago
  95. 3bd9729 implement tp_clear by Benjamin Peterson · 13 years ago
  96. 446c8d5 Issue #11707: Fix compilation errors with Visual Studio by Victor Stinner · 13 years ago
  97. 7ab9e22 Issue #11707: Fast C version of functools.cmp_to_key() by Raymond Hettinger · 13 years ago
  98. 7f2fee3 Issue #10785: Store the filename as Unicode in the Python parser. by Victor Stinner · 13 years ago
  99. da9edae Issue #11753: faulthandler thread uses pthread_sigmask() by Victor Stinner · 13 years ago
  100. 5bfa062 Issue #11688: Add sqlite3.Connection.set_trace_callback(). Patch by Torsten Landschoff. by Antoine Pitrou · 13 years ago