1. ff4cd88 faulthandler: fix compilating without threads by Victor Stinner · 13 years ago
  2. 44e31ba faulthandler: we don't use (or need) SA_SIGINFO flag of sigaction() by Victor Stinner · 13 years ago
  3. 9699440 faulthandler: check PyThreadState_Get() result in dump_tracebacks_later() by Victor Stinner · 13 years ago
  4. 736975a merge from 3.2 by Senthil Kumaran · 13 years ago
  5. ae664fb Merge from 3.1 by Senthil Kumaran · 13 years ago
  6. 8f377a3 Issue #10762: Guard against invalid/non-supported format string '%f' on Windows. Patch Santoso Wijaya. by Senthil Kumaran · 13 years ago
  7. 28deea1 Issue #11576: Fixed timedelta subtraction glitch on big timedelta values by Alexander Belopolsky · 13 years ago
  8. b6f5ec7 Issue #11576: Fixed timedelta subtraction glitch on big timedelta values by Alexander Belopolsky · 13 years ago
  9. 3bd9729 implement tp_clear by Benjamin Peterson · 13 years ago
  10. 446c8d5 Issue #11707: Fix compilation errors with Visual Studio by Victor Stinner · 13 years ago
  11. 7ab9e22 Issue #11707: Fast C version of functools.cmp_to_key() by Raymond Hettinger · 13 years ago
  12. 7f2fee3 Issue #10785: Store the filename as Unicode in the Python parser. by Victor Stinner · 13 years ago
  13. da9edae Issue #11753: faulthandler thread uses pthread_sigmask() by Victor Stinner · 13 years ago
  14. 5bfa062 Issue #11688: Add sqlite3.Connection.set_trace_callback(). Patch by Torsten Landschoff. by Antoine Pitrou · 13 years ago
  15. a7caec7 Merge fix for issue #11746 by Antoine Pitrou · 13 years ago
  16. 9c25486 Issue #11746: Fix SSLContext.load_cert_chain() to accept elliptic curve private keys. by Antoine Pitrou · 13 years ago
  17. 37dc5f8 Issue #5863: Rewrite BZ2File in pure Python, and allow it to accept by Antoine Pitrou · 13 years ago
  18. 44378d4 Issue #11393: signal of user signal displays tracebacks even if tstate==NULL by Victor Stinner · 13 years ago
  19. a01ca12 Issue #11393: Fix faulthandler.disable() and add a test by Victor Stinner · 13 years ago
  20. d727e23 Issue #11393: The fault handler handles also SIGABRT by Victor Stinner · 13 years ago
  21. bc6a4db Issue #11393: fault handler uses raise(signum) for SIGILL on Windows by Victor Stinner · 13 years ago
  22. f309134 Issue #11393: fix usage of locks in faulthandler by Victor Stinner · 13 years ago
  23. a4d4f1b Issue #11393: New try to fix faulthandler_thread() by Victor Stinner · 13 years ago
  24. 1c76b7f Issue #11393: Fix faulthandler_thread(): release cancel lock before join lock by Victor Stinner · 13 years ago
  25. f048075 Issue #11393: limit stack overflow test to 100 MB by Victor Stinner · 13 years ago
  26. 702624e Issue #11393: Fix the documentation (cancel_dump_traceback_later) by Victor Stinner · 13 years ago
  27. 024e37a Issue #11393: Add the new faulthandler module by Victor Stinner · 13 years ago
  28. 8c5b748 Merge by Kristjan Valur Jonsson · 13 years ago
  29. d055956 Merge 3.1 by Kristjan Valur Jonsson · 13 years ago
  30. 3c136e1 Merge by Kristjan Valur Jonsson · 13 years ago
  31. 978da33 Merge 3.2 by Kristjan Valur Jonsson · 13 years ago
  32. fa3edbe Merge 3.1 by Kristjan Valur Jonsson · 13 years ago
  33. 35722a9 Bugfix: Properly test for errors from PyLong_AsLong() in itertools.cycle. by Kristjan Valur Jonsson · 13 years ago
  34. 010a948 Issue 11713: clarify docstring for collections.deque() by Raymond Hettinger · 13 years ago
  35. 4974705 Issue 11713: clarify docstring for collections.deque() by Raymond Hettinger · 13 years ago
  36. d6c1d57 Issue 11713: clarify docstring for collections.deque() by Raymond Hettinger · 13 years ago
  37. fe55783 merge 3.2 by Benjamin Peterson · 13 years ago
  38. 3077404 merge 3.1 by Benjamin Peterson · 13 years ago
  39. ad45bfe let's keep parenthesis around sizeof by Benjamin Peterson · 13 years ago
  40. 5bf7091 Update docstrings for itertools.accumulate(). by Raymond Hettinger · 13 years ago
  41. 5d44613 Add optional *func* argument to itertools.accumulate(). by Raymond Hettinger · 13 years ago
  42. eb2389b merge 3.2 by Benjamin Peterson · 13 years ago
  43. 1a07f07 merge 3.1 by Benjamin Peterson · 13 years ago
  44. 39530f8 always check return value of PyObject_IsInstance for error by Benjamin Peterson · 13 years ago
  45. 8d6c62d check possible recursive _as_parameter_ to prevent segfault (closes #1838) by Benjamin Peterson · 13 years ago
  46. 6ced7c4 Issue #10833: Use PyErr_Format() and PyUnicode_FromFormat() instead of by Victor Stinner · 13 years ago
  47. 499dfcf Issue #10833: Use PyUnicode_FromFormat() and PyErr_Format() instead of by Victor Stinner · 13 years ago
  48. bfc7bf0 _elementtree.c: remove trailing spaces by Victor Stinner · 13 years ago
  49. 161fbea merge 3.2 by Victor Stinner · 13 years ago
  50. 6f0e4f9 time.strftime(): replace PyErr_Format() by PyErr_SetString() by Victor Stinner · 13 years ago
  51. b938bcd (merge) Issue #11395: io.FileIO().write() clamps the data length to 32,767 by Victor Stinner · 13 years ago
  52. e0daff1 Issue #11395: io.FileIO().write() clamps the data length to 32,767 bytes on by Victor Stinner · 13 years ago
  53. bb6eb85 Issue #10914: fix bogus memory management in Modules/getpath.c, leading to a possible crash when calling Py_SetPath() by Antoine Pitrou · 13 years ago
  54. 9befeb3 Issue #5421: merge fix by Antoine Pitrou · 13 years ago
  55. 5e98141 Issue #5421: Fix misleading error message when one of socket.sendto()'s by Antoine Pitrou · 13 years ago
  56. 2e8a07c Merge with 3.1. by Ezio Melotti · 13 years ago
  57. 9465d42 Revert typo fixes in zlib/* by Ezio Melotti · 13 years ago
  58. 3b3499b #11565: Merge with 3.1. by Ezio Melotti · 13 years ago
  59. 1392500 #11565: Fix several typos. Patch by Piotr Kasprzyk. by Ezio Melotti · 13 years ago
  60. 9c4f44f Fix issue #11432. if the stdin pipe is the same file descriptor as either stdout or stderr by Gregory P. Smith · 13 years ago
  61. b78b4d7 Merge with 3.2 by Ezio Melotti · 13 years ago
  62. 8beaa6c Revert typo fixes in _cytpes/libffi* by Ezio Melotti · 13 years ago
  63. 4969f70 #11515: Merge with 3.1. by Ezio Melotti · 13 years ago
  64. 42da663 #11515: fix several typos. Patch by Piotr Kasprzyk. by Ezio Melotti · 13 years ago
  65. 35db8a8 Merge fix for issue #11450 by Antoine Pitrou · 13 years ago
  66. 7983d33 Issue #11450: Don't truncate hg version info in Py_GetBuildInfo() when by Antoine Pitrou · 13 years ago
  67. f6b563a Issue #3080: zipimport has a full unicode suppport by Victor Stinner · 13 years ago
  68. 9ad63e0 Fix refleak introduced by #10812. by Ross Lagerwall · 13 years ago
  69. 4d076da Issue #11592: Fix compilation warnings in os module. by Ross Lagerwall · 13 years ago
  70. 6826d29 Merge by Antoine Pitrou · 13 years ago
  71. fee6684 Issue #5421: merge fix by Antoine Pitrou · 13 years ago
  72. 8e74967 Issue #10812: Revert os.lseek change. by Ross Lagerwall · 13 years ago
  73. 7807c35 Issue #10812: Add some extra posix functions to the os module. by Ross Lagerwall · 13 years ago
  74. e371ad6 Merge with 3.2. by Ezio Melotti · 13 years ago
  75. b88ed15 #11565: Merge with 3.2. by Ezio Melotti · 13 years ago
  76. 6466a52 merge update by Gregory P. Smith · 13 years ago
  77. 8121898 Fix issue #11432. if the stdin pipe is the same file descriptor as either stdout or stderr by Gregory P. Smith · 13 years ago
  78. 3796bef Merge with 3.2 by Ezio Melotti · 13 years ago
  79. 3730892 #11515: Merge with 3.2. by Ezio Melotti · 13 years ago
  80. 736e7fc Issue #11495: OSF support is eliminated. It was deprecated in Python 3.2 by Jesus Cea · 13 years ago
  81. 16c4ce1 Issue #9935: Speed up pickling of instances of user-defined classes. by Antoine Pitrou · 13 years ago
  82. d2dee34 Merge fix for issue #11450 by Antoine Pitrou · 13 years ago
  83. 8a1acf2 merge heads by Georg Brandl · 13 years ago
  84. 776e586 Remove sys.subversion and svn build identification leftovers. by Georg Brandl · 13 years ago
  85. fe09a54 Merge build identification to default branch. by Georg Brandl · 13 years ago
  86. 13039c8 Merge build identification to 3.2 branch. by Georg Brandl · 13 years ago
  87. 125d5c8 Issue #11408: In threading.Lock.acquire(), only call gettimeofday() when by Antoine Pitrou · 13 years ago
  88. f874deb Merge fix for issue #11391 by Antoine Pitrou · 13 years ago
  89. 80d3610 Merge fix for issue #11391 by Antoine Pitrou · 13 years ago
  90. 16a0a0b Issue #11391: Writing to a mmap object created with by Antoine Pitrou · 13 years ago
  91. 1ca2e79 Commit the hg build identification patch from the pymigr repo. by Georg Brandl · 13 years ago
  92. acdad9a Issue 11351 - apply patch by Steffen Daode Nurpmeso which should fix TestSendfile.test_headers failure on OSX. by Giampaolo Rodolà · 13 years ago
  93. f3fd733 Remove useless argument of _PyUnicode_AsDefaultEncodedString() by Victor Stinner · 13 years ago
  94. 9e719b6 Merged revisions 88460,88464,88466,88486,88511,88652 via svnmerge from by Antoine Pitrou · 13 years ago
  95. 061cfb5 Issue #10866: Add socket.sethostname(). Initial patch by Ross Lagerwall. by Antoine Pitrou · 13 years ago
  96. fcf81fd Issue #11140: Lock.release() now raises a RuntimeError when attempting by Antoine Pitrou · 13 years ago
  97. d8a43b4 revert accidental formatting change by Benjamin Peterson · 13 years ago
  98. c6696d2 this isn't true anymore by Benjamin Peterson · 13 years ago
  99. dcc20b8 Check error return from _parse_off_t(), and remove cruft from the 2->3 transition. by Antoine Pitrou · 13 years ago
  100. 8250e23 Issue #10755: Add the posix.fdlistdir() function. Patch by Ross Lagerwall. by Antoine Pitrou · 13 years ago