1. 06383ee #12017: merge with 3.1. by Ezio Melotti · 13 years ago
  2. 362b951 #12017: Fix segfault in json.loads() while decoding highly-nested objects using the C accelerations. by Ezio Melotti · 13 years ago
  3. 8108e96 (Merge 3.1) Issue #11277: mmap.mmap() calls fcntl(fd, F_FULLFSYNC) on Mac OS X by Victor Stinner · 13 years ago
  4. a6cd0cf Issue #11277: mmap calls fcntl(fd, F_FULLFSYNC) on Mac OS X to get around a by Victor Stinner · 13 years ago
  5. 0c759fe Issue #10517: After fork(), reinitialize the TLS used by the PyGILState_* by Antoine Pitrou · 13 years ago
  6. 8e60577 Issue #10914: Add a minimal embedding test to test_capi. by Antoine Pitrou · 13 years ago
  7. 27026f8 (Merge 3.1) Issue #11768: The signal handler of the signal module only calls by Victor Stinner · 13 years ago
  8. 6c9b35b Issue #11768: The signal handler of the signal module only calls by Victor Stinner · 13 years ago
  9. fdb2df4 Remove unnecessary call to PyErr_Clear. by Ezio Melotti · 13 years ago
  10. ae664fb Merge from 3.1 by Senthil Kumaran · 13 years ago
  11. 8f377a3 Issue #10762: Guard against invalid/non-supported format string '%f' on Windows. Patch Santoso Wijaya. by Senthil Kumaran · 13 years ago
  12. b6f5ec7 Issue #11576: Fixed timedelta subtraction glitch on big timedelta values by Alexander Belopolsky · 13 years ago
  13. 9c25486 Issue #11746: Fix SSLContext.load_cert_chain() to accept elliptic curve private keys. by Antoine Pitrou · 13 years ago
  14. 8c5b748 Merge by Kristjan Valur Jonsson · 13 years ago
  15. d055956 Merge 3.1 by Kristjan Valur Jonsson · 13 years ago
  16. fa3edbe Merge 3.1 by Kristjan Valur Jonsson · 13 years ago
  17. 35722a9 Bugfix: Properly test for errors from PyLong_AsLong() in itertools.cycle. by Kristjan Valur Jonsson · 13 years ago
  18. 4974705 Issue 11713: clarify docstring for collections.deque() by Raymond Hettinger · 13 years ago
  19. d6c1d57 Issue 11713: clarify docstring for collections.deque() by Raymond Hettinger · 13 years ago
  20. 3077404 merge 3.1 by Benjamin Peterson · 13 years ago
  21. ad45bfe let's keep parenthesis around sizeof by Benjamin Peterson · 13 years ago
  22. 1a07f07 merge 3.1 by Benjamin Peterson · 13 years ago
  23. 39530f8 always check return value of PyObject_IsInstance for error by Benjamin Peterson · 13 years ago
  24. 8d6c62d check possible recursive _as_parameter_ to prevent segfault (closes #1838) by Benjamin Peterson · 13 years ago
  25. 6f0e4f9 time.strftime(): replace PyErr_Format() by PyErr_SetString() by Victor Stinner · 13 years ago
  26. e0daff1 Issue #11395: io.FileIO().write() clamps the data length to 32,767 bytes on by Victor Stinner · 13 years ago
  27. 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
  28. 9befeb3 Issue #5421: merge fix by Antoine Pitrou · 13 years ago
  29. 5e98141 Issue #5421: Fix misleading error message when one of socket.sendto()'s by Antoine Pitrou · 13 years ago
  30. 2e8a07c Merge with 3.1. by Ezio Melotti · 13 years ago
  31. 9465d42 Revert typo fixes in zlib/* by Ezio Melotti · 13 years ago
  32. 3b3499b #11565: Merge with 3.1. by Ezio Melotti · 13 years ago
  33. 1392500 #11565: Fix several typos. Patch by Piotr Kasprzyk. by Ezio Melotti · 13 years ago
  34. 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
  35. b78b4d7 Merge with 3.2 by Ezio Melotti · 13 years ago
  36. 8beaa6c Revert typo fixes in _cytpes/libffi* by Ezio Melotti · 13 years ago
  37. 4969f70 #11515: Merge with 3.1. by Ezio Melotti · 13 years ago
  38. 42da663 #11515: fix several typos. Patch by Piotr Kasprzyk. by Ezio Melotti · 13 years ago
  39. 35db8a8 Merge fix for issue #11450 by Antoine Pitrou · 13 years ago
  40. 7983d33 Issue #11450: Don't truncate hg version info in Py_GetBuildInfo() when by Antoine Pitrou · 13 years ago
  41. 13039c8 Merge build identification to 3.2 branch. by Georg Brandl · 13 years ago
  42. 80d3610 Merge fix for issue #11391 by Antoine Pitrou · 13 years ago
  43. 16a0a0b Issue #11391: Writing to a mmap object created with by Antoine Pitrou · 13 years ago
  44. 1ca2e79 Commit the hg build identification patch from the pymigr repo. by Georg Brandl · 13 years ago
  45. 9e719b6 Merged revisions 88460,88464,88466,88486,88511,88652 via svnmerge from by Antoine Pitrou · 13 years ago
  46. d843c2d Merged revisions 88610 via svnmerge from by Antoine Pitrou · 13 years ago
  47. 915605c Merged revisions 88550 via svnmerge from by Antoine Pitrou · 13 years ago
  48. ec8f0df Merged revisions 88546 via svnmerge from by Alexander Belopolsky · 13 years ago
  49. 97696cb Merged revisions 88486 via svnmerge from by Antoine Pitrou · 13 years ago
  50. bf709fe Merged revisions 88464,88466 via svnmerge from by Antoine Pitrou · 13 years ago
  51. f3d2275 Merged revisions 88460 via svnmerge from by Antoine Pitrou · 13 years ago
  52. 9a829be #941346: Fix broken shared library build on AIX. Patch by Sebastien Sable, review by Antoine Pitrou. by Georg Brandl · 14 years ago
  53. 4fb96f4 Merged revisions 87919 via svnmerge from by Alexander Belopolsky · 14 years ago
  54. 6916806 Issue #11135: Remove redundant doc field from PyType_Spec. by Martin v. Löwis · 14 years ago
  55. 43b2f45 Merged revisions 87136,87221,87256,87337-87338,87571,87839,88164 via svnmerge from by R. David Murray · 14 years ago
  56. 738236d Issue #11067: Add PyType_GetFlags, to support PyUnicode_Check in the limited ABI by Martin v. Löwis · 14 years ago
  57. f7ef4de Merged revisions 88337 via svnmerge from by Brett Cannon · 14 years ago
  58. e144507 There was a possibility that the initialization of _sqlite, when it failed, by Brett Cannon · 14 years ago
  59. 2e811c9 Merged revisions 88284 via svnmerge from by Antoine Pitrou · 14 years ago
  60. 0ea622a Issue #8275: Fix passing of callback arguments with ctypes under Win64. by Antoine Pitrou · 14 years ago
  61. 80f75e6 Issue #10989: Fix a crash on SSLContext.load_verify_locations(None, True). by Victor Stinner · 14 years ago
  62. 512d2cc Issue #11004: Repair edge case in deque.count(). (Reviewed by Georg Brandl.) by Raymond Hettinger · 14 years ago
  63. 0f2a61a Merged revisions 88147 via svnmerge from by Antoine Pitrou · 14 years ago
  64. e6d4c5b Issue #10987: Fix the recursion limit handling in the _pickle module. by Antoine Pitrou · 14 years ago
  65. 4ee65a9 Issue #10955: zipimport uses ASCII at bootstrap by Victor Stinner · 14 years ago
  66. 6107a4e Merged revisions 88131 via svnmerge from by Antoine Pitrou · 14 years ago
  67. 305bc9e Issue #10955: Fix a potential crash when trying to mmap() a file past its by Antoine Pitrou · 14 years ago
  68. 710e966 Merged revisions 88111 via svnmerge from by Antoine Pitrou · 14 years ago
  69. e47e093 Issue #10898: Allow compiling the posix module when the C library defines by Antoine Pitrou · 14 years ago
  70. 50dc65f Merged revisions 88036 via svnmerge from by Antoine Pitrou · 14 years ago
  71. d0ebc75 Fix mmap and test_mmap under Windows too (followup to r88022) by Antoine Pitrou · 14 years ago
  72. fb7bc3d Merged revisions 88022 via svnmerge from by Antoine Pitrou · 14 years ago
  73. 85f4615 Issue #10916: mmap should not segfault when a file is mapped using 0 as by Antoine Pitrou · 14 years ago
  74. 44a6c16 Merged revisions 87991 via svnmerge from by Eli Bendersky · 14 years ago
  75. 0739591 Remove call to nonexisting function (relic from Python 2.x) under #ifdef __INSURE__. Issue 9844 by Eli Bendersky · 14 years ago
  76. ef4a03f Issue #5109: array.array constructor will now use fast code when by Alexander Belopolsky · 14 years ago
  77. b7d40d1 Issue #1726687: time.mktime() will now correctly compute value one by Alexander Belopolsky · 14 years ago
  78. 7234479 Issue #9611: remove useless and dangerous explicit conversion to size_t by Victor Stinner · 14 years ago
  79. 95f1dfc Issue #9566: Fix pyparse.xmlparser.ParseFile() by Victor Stinner · 14 years ago
  80. a4815ca Issue #10872: The repr() of TextIOWrapper objects now includes the mode by Antoine Pitrou · 14 years ago
  81. 06ec45e Issue #10864: limit year to [1; 9999] for strftime() on Solaris by Victor Stinner · 14 years ago
  82. 301f121 Issue #1777412: Remove all limits on tm_year from time.strftime() by Victor Stinner · 14 years ago
  83. 73ea29c Issue #1777412: strftime() accepts year >= 1 instead of year >= 1900 by Victor Stinner · 14 years ago
  84. 0dd06f4 Fixed error handling branches. Thanks Victor Stinner for pointing this out. by Alexander Belopolsky · 14 years ago
  85. b8bb466 Issue #1777412: extended year range of strftime down to 1000. by Alexander Belopolsky · 14 years ago
  86. c64708a Issue #10827: Changed the rules for 2-digit years. The time.asctime by Alexander Belopolsky · 14 years ago
  87. 89e3436 Issue #10841: set binary mode on files; the parser translates newlines by Victor Stinner · 14 years ago
  88. 610e544 Further simplify gettmarg() by Alexander Belopolsky · 14 years ago
  89. ff17385 Merged revisions 87802 via svnmerge from by Antoine Pitrou · 14 years ago
  90. e85da7a Issue #7858: Raise an error properly when os.utime() fails under Windows by Antoine Pitrou · 14 years ago
  91. ecbb8dc Use PyOS_snprintf for better portability. by Alexander Belopolsky · 14 years ago
  92. a686725 - time.accept2dyear = True is now equivalent to time.accept2dyear = 1 by Alexander Belopolsky · 14 years ago
  93. 358e11d Issue #10756: atexit normalizes the exception before displaying it. by Victor Stinner · 14 years ago
  94. ca1e7ec test_unicode: use ctypes to test PyUnicode_FromFormat() by Victor Stinner · 14 years ago
  95. 9d6f936 Issue #9566: PyUnicode_FromFormatV() doesn't support %zi, use %zd instead by Victor Stinner · 14 years ago
  96. ed7e222 Issue #9566: explain why (int)len cannot underflow by Victor Stinner · 14 years ago
  97. 5da468f Whitespace cleanup by Alexander Belopolsky · 14 years ago
  98. b9588b5 Issue #8013: time.asctime and time.ctime no longer call system asctime by Alexander Belopolsky · 14 years ago
  99. 0fcab4a Issue #9566: use Py_ssize_t instead of int by Victor Stinner · 14 years ago
  100. 8848c7a Issue #8650: zlib.compress() and zlib.decompress() raise an OverflowError if by Victor Stinner · 14 years ago