1. 50eee83 Issue #14007: drop unused TreeBuilder().xml. by Florent Xicluna · 13 years ago
  2. 4e99a31 Issue #14181: Allow memoryview construction from an object that uses the by Stefan Krah · 13 years ago
  3. 8d3c290 Issue #14166: Pickler objects now have an optional `dispatch_table` attribute which allows to set custom per-pickler reduction functions. by Antoine Pitrou · 13 years ago
  4. 092af1f Issue #14128: Exposing Element as an actual type from _elementtree, rather than a factory function. by Eli Bendersky · 13 years ago
  5. 643cd68 Issue #13964: signal.sigtimedwait() timeout is now a float instead of a tuple by Victor Stinner · 13 years ago
  6. efb00c0 Issue #14153 Create _Py_device_encoding() to prevent _io from having to import by Brett Cannon · 13 years ago
  7. 4aea7d3 Issue #14125: Fix refleak in timemodule.c on Windows. Thanks sbt for pointing by Stefan Krah · 13 years ago
  8. a03422f Issue #14125: Fix multiprocessing refleak on Windows. Patch by sbt. by Stefan Krah · 13 years ago
  9. 408026c Merge 3.2 by Éric Araujo · 13 years ago
  10. fab9766 Fix typo in “seperat{or,ion}” by Éric Araujo · 13 years ago
  11. 9a2d99e - Issue #10181: New memoryview implementation fixes multiple ownership by Stefan Krah · 13 years ago
  12. 42ae472 merge with 3.2 by Georg Brandl · 13 years ago
  13. 7ef825f merge with 3.2 by Georg Brandl · 13 years ago
  14. c9a4207 Remove reST markup from --help output. Also: O(n**2) is dict construction, not single insertion. by Georg Brandl · 13 years ago
  15. c9f54cf enable hash randomization by default by Benjamin Peterson · 13 years ago
  16. 528b54b Fix test failure in test_cmd_line by initializing the hash secret at the earliest point. by Antoine Pitrou · 13 years ago
  17. 86838b0 Fix test failure in test_cmd_line by initializing the hash secret at the earliest point. by Antoine Pitrou · 13 years ago
  18. e249dca merge 3.2 by Benjamin Peterson · 13 years ago
  19. 69e9727 ensure no one tries to hash things before the random seed is found by Benjamin Peterson · 13 years ago
  20. 8b24506 Merge branch '3.2' by Petri Lehtinen · 13 years ago
  21. 4fe85ab sqlite3: Fix 64-bit integer handling in user functions on 32-bit architectures by Petri Lehtinen · 13 years ago
  22. 71f660e update to Unicode 6.1 by Benjamin Peterson · 13 years ago
  23. 2fb477c Merge 3.2: Issue #13703 plus some related test suite fixes. by Georg Brandl · 13 years ago
  24. 09a7c72 Merge from 3.1: Issue #13703: add a way to randomize the hash values of basic types (str, bytes, datetime) by Georg Brandl · 13 years ago
  25. 2daf6ae Issue #13703: add a way to randomize the hash values of basic types (str, bytes, datetime) by Georg Brandl · 13 years ago
  26. 23d7f12 use new generic __dict__ descriptor implementations by Benjamin Peterson · 13 years ago
  27. c135fa4 Fix last remaining build issues of _ssl under old OpenSSLs. Patch by Vinay. by Antoine Pitrou · 13 years ago
  28. a9bf2ac Try to really fix compilation failures of the _ssl module under very old OpenSSLs. by Antoine Pitrou · 13 years ago
  29. e9fccb3 Fix compilation when SSL_OP_SINGLE_ECDH_USE isn't defined by Antoine Pitrou · 13 years ago
  30. 04d4ee4 Issue #13014: Fix a possible reference leak in SSLSocket.getpeercert(). by Antoine Pitrou · 13 years ago
  31. 2f5a163 Issue #13014: Fix a possible reference leak in SSLSocket.getpeercert(). by Antoine Pitrou · 13 years ago
  32. 15af7b4 Issue #13015: Fix a possible reference leak in defaultdict.__repr__. by Antoine Pitrou · 13 years ago
  33. f5f1fe0 Issue #13015: Fix a possible reference leak in defaultdict.__repr__. by Antoine Pitrou · 13 years ago
  34. a9c895d PyUnicode_DecodeLocale() second argument is now a char*, no more an int by Victor Stinner · 13 years ago
  35. a72a98f Issue #13988: cElementTree is deprecated and the _elementtree accelerator is automatically used whenever available. by Florent Xicluna · 13 years ago
  36. f4bdf4e Issue #13988: move the python bootstrap code to cElementTree.py, and remove obsolete code for Python 2.4 and 2.5. by Florent Xicluna · 13 years ago
  37. bc35beb Undocument and clean up sqlite3.OptimizedUnicode by Petri Lehtinen · 13 years ago
  38. bcf2b59 Issue #13609: Add two functions to query the terminal size: by Antoine Pitrou · 13 years ago
  39. 4195b5c Backout f8409b3d6449: the PEP 410 is not accepted yet by Victor Stinner · 13 years ago
  40. ccd5715 PEP 410 by Victor Stinner · 13 years ago
  41. ed4a8fc Issue #8184: multiprocessing: On Windows, don't set SO_REUSEADDR on Connection by Charles-François Natali · 13 years ago
  42. 1aa54a4 Issue #13964: Skip os.*utime*() tests if os.stat() doesn't support timestamp by Victor Stinner · 13 years ago
  43. a2f7c00 Issue #13964: Split os.*utime*() subsecond tests into multiple tests to help by Victor Stinner · 13 years ago
  44. 8b30201 Issue #13846: Add time.monotonic(), monotonic clock. by Victor Stinner · 13 years ago
  45. 4a84f58 Issue #10811: Fix recursive usage of cursors. Instead of crashing, raise a ProgrammingError now. by Petri Lehtinen · 13 years ago
  46. 7794090 Following Nick's suggestion, rename posix.fdlistdir() to posix.flistdir(), to by Charles-François Natali · 13 years ago
  47. 1d06daa Merge by Brett Cannon · 13 years ago
  48. b685568 Check for errors in creating sub-interpreters when testing the C API. by Brett Cannon · 13 years ago
  49. 9d6c669 Issue #13777: Add PF_SYSTEM sockets on OS X. Patch by Michael Goderbauer. by Martin v. Löwis · 13 years ago
  50. 3f32fc8 Merge. by Charles-François Natali · 13 years ago
  51. 6d0d24e Issue #13817: After fork(), reinit the ad-hoc TLS implementation earlier to fix by Charles-François Natali · 13 years ago
  52. 8940f62 Merge branch 3.2 by Petri Lehtinen · 13 years ago
  53. 023fe33 sqlite3: Handle strings with embedded zeros correctly by Petri Lehtinen · 13 years ago
  54. cc6abd5 Fix zipimport.c's read_directory() to use appropriate types for the values by Gregory P. Smith · 13 years ago
  55. ab32066 Fix zip_import.c's read_directory() to use appropriate types for the values by Gregory P. Smith · 13 years ago
  56. f3b2d88 Issue #8828: Add new function os.replace(), for cross-platform renaming with overwriting. by Antoine Pitrou · 13 years ago
  57. a247720 Issue #13874: read_null() of faulthandler uses volatile to avoid optimisation by Victor Stinner · 13 years ago
  58. 7ab4af0 Issue #13848: open() and the FileIO constructor now check for NUL characters in the file name. by Antoine Pitrou · 13 years ago
  59. 1334884 Issue #13848: open() and the FileIO constructor now check for NUL characters in the file name. by Antoine Pitrou · 13 years ago
  60. 04d9dd0 Issue #13806: The size check in audioop decompression functions was too strict and could reject valid compressed data. by Antoine Pitrou · 13 years ago
  61. 75ff65e Issue #13806: The size check in audioop decompression functions was too strict and could reject valid compressed data. by Antoine Pitrou · 13 years ago
  62. 9e2e532 Issue #13885: CVE-2011-3389: the _ssl module would always disable the CBC IV attack countermeasure. by Antoine Pitrou · 13 years ago
  63. 3f36631 Issue #13885: CVE-2011-3389: the _ssl module would always disable the CBC IV attack countermeasure. by Antoine Pitrou · 13 years ago
  64. f2bf8a6 Issue #13885: CVE-2011-3389: the _ssl module would always disable the CBC IV attack countermeasure. by Antoine Pitrou · 13 years ago
  65. 85fdfa8 Issue #13847: time.clock() now raises a RuntimeError if the processor time used by Victor Stinner · 13 years ago
  66. c1b5d34 Issue #13847: time.localtime() and time.gmtime() now raise an OSError instead by Victor Stinner · 13 years ago
  67. c9e7ef7 - Issue #13840: Fix ctypes.create_string_buffer exception message and docs. by Meador Inge · 13 years ago
  68. 65992c1 - Issue #13840: Fix ctypes.create_string_buffer exception message and docs. by Meador Inge · 13 years ago
  69. 7fa5a99 merge heads by Benjamin Peterson · 13 years ago
  70. 8485ad1 merge heads by Benjamin Peterson · 13 years ago
  71. 91ecea2 Issue #13772: In os.symlink() under Windows, do not try to guess the link by Antoine Pitrou · 13 years ago
  72. 5311c1d Issue #13772: In os.symlink() under Windows, do not try to guess the link by Antoine Pitrou · 13 years ago
  73. 3ef2f8c merge 3.2 by Benjamin Peterson · 13 years ago
  74. 91eef98 fix declaration style by Benjamin Peterson · 13 years ago
  75. ce79852 use the static identifier api for looking up special methods by Benjamin Peterson · 13 years ago
  76. 08c1278 Fix FreeBSD, NetBSD and OpenBSD behavior of the issue #8052 fix. by Gregory P. Smith · 13 years ago
  77. 4842efc Fix FreeBSD, NetBSD and OpenBSD behavior of the issue #8052 fix. by Gregory P. Smith · 13 years ago
  78. d45382d bugfix for *BSD platforms. (oops messed up #define) by Gregory P. Smith · 13 years ago
  79. 61f0da8 bugfix for issue 8052 fixes on *BSD platforms. by Gregory P. Smith · 13 years ago
  80. e9b7cab Another issue #8052 bugfix (related to previous commit). by Gregory P. Smith · 13 years ago
  81. e3f7848 Bugfix for issue #8052 fix on *BSD variants. by Gregory P. Smith · 13 years ago
  82. d635af5 Fixes issue #8052: The posix subprocess module's close_fds behavior was by Gregory P. Smith · 13 years ago
  83. 8facece Fixes issue #8052: The posix subprocess module's close_fds behavior was by Gregory P. Smith · 13 years ago
  84. e961bd4 Avoid the compiler warning about the unused return value. by Gregory P. Smith · 13 years ago
  85. 12fdca5 Avoid the compiler warning about the unused return value. by Gregory P. Smith · 13 years ago
  86. bb5b92d Merge refleak fixes from 3.2 by Antoine Pitrou · 13 years ago
  87. fc1b6f0 Fix the _io module leaking references when a sub-interpreter is created. by Antoine Pitrou · 13 years ago
  88. e81ac8b #13665: merge with 3.2. by Ezio Melotti · 13 years ago
  89. acd5f7b #13665: s/string/bytes/ in error message. by Ezio Melotti · 13 years ago
  90. e39ebe4 Merge by Antoine Pitrou · 13 years ago
  91. 855889b Issue #10278: fix a typo in the doc by Victor Stinner · 13 years ago
  92. b94b266 Close #10278: Add time.wallclock() function, monotonic clock. by Victor Stinner · 13 years ago
  93. 2c08560 Fix error handling in timemodule.c by Antoine Pitrou · 13 years ago
  94. 7422b22 Test running of code in a sub-interpreter (prelude to issue #6531). by Antoine Pitrou · 13 years ago
  95. 2f828f2 Test running of code in a sub-interpreter (prelude to issue #6531). by Antoine Pitrou · 13 years ago
  96. 2a7fe03 Add missing sentinel to PyCursesWindow_getsets by Ronald Oussoren · 13 years ago
  97. 5831bd2 Remove an unnecessary extra copy of the bytes hash function. by Gregory P. Smith · 13 years ago
  98. 50590f1 Use GetModuleHandleW to avoid *A functions where possible. by Martin v. Löwis · 13 years ago
  99. d612de1 Issue #12760: Refer to the new 'x' open mode as "exclusive creation" mode. by Charles-François Natali · 13 years ago
  100. 366999a Issue #9975: socket: Fix incorrect use of flowinfo and scope_id. Patch by by Charles-François Natali · 13 years ago