1. 5bbd231 Issue #15513: Added a __sizeof__ implementation for pickle classes. by Serhiy Storchaka · 10 years ago
  2. e32467c allow ssl module to compile if openssl doesn't support SSL 3 (closes #22935) by Benjamin Peterson · 10 years ago
  3. b757c83 Issue #22581: Use more "bytes-like object" throughout the docs and comments. by Serhiy Storchaka · 10 years ago
  4. 56a6d85 Removed duplicated words in in comments and docs. by Serhiy Storchaka · 10 years ago
  5. 7243b57 don't require OpenSSL SNI to pass hostname to ssl functions (#22921) by Benjamin Peterson · 10 years ago
  6. 6c14f23 fix possible double free in TextIOWrapper.__init__ (closes #22849) by Benjamin Peterson · 10 years ago
  7. d915b08 Issue #22821: Fixed fcntl() with integer argument on 64-bit big-endian by Serhiy Storchaka · 10 years ago
  8. abd1c97 fix test where sizeof(long) != sizeof(int) by Benjamin Peterson · 10 years ago
  9. b7fa201 Issue #20160: broken ctypes calling convention on MSVC / 64-bit Windows (large structs) Patch by mattip by Steve Dower · 10 years ago
  10. 7e8b867 Issue #22773: fix failing test with old readline versions due to issue #19884. by Antoine Pitrou · 10 years ago
  11. e48ec21 Fix typo. by Georg Brandl · 10 years ago
  12. 817905b #13096: Fix segfault in CTypes POINTER handling of large values. by R David Murray · 10 years ago
  13. e1a7d9d Closes #22568: fix UTIME_TO_* macros in posixmodule for rare cases. by Georg Brandl · 10 years ago
  14. 682124c prevent passing NULL to memcpy (closes #22605) by Benjamin Peterson · 10 years ago
  15. fc6a90a Issue #22588: Fix typo in _testcapi.test_incref_decref_API() by Victor Stinner · 10 years ago
  16. 484df00 Issue #22568: Fix compilation of posixmodule.c with Open Watcom: rename "utime" by Victor Stinner · 10 years ago
  17. e2bd2a7 Issue #21715: Extracted shared complicated code in the _io module to new by Serhiy Storchaka · 10 years ago
  18. 0ddbf47 Issue #22462: Fix pyexpat's creation of a dummy frame to make it appear in exception tracebacks. by Antoine Pitrou · 10 years ago
  19. 8f437aa Issue #22290: Fix error handling in the _posixsubprocess module. by Victor Stinner · 10 years ago
  20. 41ea1f4 Closes #19342: improve docstrings in grp module. by Georg Brandl · 10 years ago
  21. 5083828 faulthandler: test_gil_released() now uses _sigsegv() instead of _read_null(), by Victor Stinner · 10 years ago
  22. 9db521c faulthandler: _sigsegv() and _sigabrt() don't accept parameters by Victor Stinner · 10 years ago
  23. d6b1769 Issue #22396: On 32-bit AIX platform, don't expose os.posix_fadvise() nor by Victor Stinner · 10 years ago
  24. c44eb73 merge 3.3 (#22517) by Benjamin Peterson · 10 years ago
  25. bbd0a32 clear BufferedRWPair weakrefs on deallocation (closes #22517) by Benjamin Peterson · 10 years ago
  26. b87630c Issue #21860: Correct docstrings of FileIO.seek() and FileIO.truncate() methods. by Berker Peksag · 10 years ago
  27. 8fad167 Issue #22166: clear codec caches in test_codecs by Nick Coghlan · 10 years ago
  28. ad24d62 Issue #17095: Temporarily revert getpath.c change that added the Modules by Ned Deily · 10 years ago
  29. 42d67af Issue #21147: sqlite3 now raises an exception if the request contains a null by Serhiy Storchaka · 10 years ago
  30. abf68ce Issue #21951: Fixed a crash in Tkinter on AIX when called Tcl command with by Serhiy Storchaka · 10 years ago
  31. 0794088 Issue #21951: Use attemptckalloc() instead of ckalloc() in Tkinter. by Serhiy Storchaka · 10 years ago
  32. 31a3ec3 Issue #22338: Fix a crash in the json module on memory allocation failure. by Victor Stinner · 10 years ago
  33. 1486799 Issue #22369: Change "context manager protocol" to "context management protocol". by Serhiy Storchaka · 10 years ago
  34. cf26115 Introduce and check for MPD_VERSION_HEX for precise management of builds by Stefan Krah · 10 years ago
  35. 298131a Issue #22090: Fix '%' formatting for infinities and NaNs. by Stefan Krah · 10 years ago
  36. 76b4765 Issue #15696: Add a __sizeof__ implementation for mmap objects on Windows. by Serhiy Storchaka · 10 years ago
  37. 3b48af0 - Issue #22176: Fix build failure on ARM with -Werror=declaration-after-statement by doko@ubuntu.com · 10 years ago
  38. 6a66f15 - Issue #22176: Add src/x86/win32.S for x86 libffi builds. by doko@ubuntu.com · 10 years ago
  39. 736a913 - Issue #22176: Update the ctypes module's libffi to v3.1. This release by doko@ubuntu.com · 10 years ago
  40. 4f06d60 Issue #22161: Conformed arguments type checks in ctype to actually supported by Serhiy Storchaka · 10 years ago
  41. 3d4b2d4 Issue #21975: Fixed crash when using uninitialized sqlite3.Row (in particular by Serhiy Storchaka · 10 years ago
  42. 74596a8 Issue #21580: Now Tkinter correctly handles bytes arguments passed to Tk. by Serhiy Storchaka · 10 years ago
  43. e0e6581 Issue #21704: Fix build error for _multiprocessing when semaphores by Richard Oudkerk · 10 years ago
  44. e254e53 Fix repr(_socket.socket) on Windows 64-bit: don't fail with OverflowError by Victor Stinner · 10 years ago
  45. 5a2146a Issue #22044: Fixed premature DECREF in call_tzinfo_method. by Raymond Hettinger · 10 years ago
  46. 92639cc Issue #19884, readline: calling rl_variable_bind ("enable-meta-key", "off") by Victor Stinner · 10 years ago
  47. a3c80ce Issue #19884: readline: Disable the meta modifier key if stdout is not a by Victor Stinner · 10 years ago
  48. b1ebfdd Call PyErr_NoMemory() when PyMem_Malloc() fails. by Serhiy Storchaka · 10 years ago
  49. cd75298 Issue #21781, _ssl: Fix asn1obj2py() on Windows 64-bit, "s#" format requires by Victor Stinner · 10 years ago
  50. e865128 properly decref the return value of close() by Benjamin Peterson · 10 years ago
  51. e10920f Issue #21090: io.FileIO.readall() does not ignore I/O errors anymore. Before, by Victor Stinner · 10 years ago
  52. f18f871 Issue #8677: make the zlib module "ssize_t clean" for parsing parameters by Victor Stinner · 10 years ago
  53. 65a3144 Closes #21780: make the unicodedata module "ssize_t clean" for parsing parameters by Victor Stinner · 10 years ago
  54. 2e57b4e Issue #21781: Make the ssl module "ssize_t clean" for parsing parameters. by Victor Stinner · 10 years ago
  55. 293f3f5 Closes #21892, #21893: Use PY_FORMAT_SIZE_T instead of %zi or %zu to format C by Victor Stinner · 10 years ago
  56. a6ec5ee Fix typo in socket.getaddrinfo() docstring. by Berker Peksag · 10 years ago
  57. 297d104 Issue #21858: Better handling of Python exceptions in the sqlite3 module. by Victor Stinner · 10 years ago
  58. 97d3555 Issue #19145: Fix handling of negative values for a "times" keyword argument to itertools.repeat()> by Raymond Hettinger · 10 years ago
  59. 76d3f14 PyErr_NormalizeException doesn't like being called with an exception set by Serhiy Storchaka · 10 years ago
  60. f10063e Issue #21310: Fixed possible resource leak in failed open(). by Serhiy Storchaka · 10 years ago
  61. 8a8f7f9 Issue #21677: Fixed chaining nonnormalized exceptions in io close() methods. by Serhiy Storchaka · 10 years ago
  62. 797bcb5 Issue #21639: Fix name of _testcapi test functions by Victor Stinner · 10 years ago
  63. b166191 Issue #17095: Fix Modules/Setup *shared* support. by Ned Deily · 10 years ago
  64. a26987a Fix the comment to not refer to the removed end_fd parameter. by Gregory P. Smith · 10 years ago
  65. d4dcb70 Don't restrict ourselves to a "max" fd when closing fds before exec() by Gregory P. Smith · 10 years ago
  66. 79851d7 Issue #21552: Fixed possible integer overflow of too long string lengths in by Serhiy Storchaka · 10 years ago
  67. 47a9813 Issue #10203: sqlite3.Row now truly supports sequence protocol. In particulr by Serhiy Storchaka · 10 years ago
  68. 5eb6b39 support pep 3118 format strings for ctypes objects with nontrivial shapes (closes #10744) by Benjamin Peterson · 10 years ago
  69. 429b59e Issue #20998: Fixed re.fullmatch() of repeated single character pattern by Serhiy Storchaka · 10 years ago
  70. e2d6690 Issue #21497: faulthandler functions now raise a better error if sys.stderr is by Victor Stinner · 10 years ago
  71. e1e04ad Backed out changeset 6ceedbd88b5f by Victor Stinner · 10 years ago
  72. b78c448 Issue #21488: Add support of keyword arguments for codecs.encode and codecs.decode by Victor Stinner · 10 years ago
  73. 23a192d use logical rather than bit and by Benjamin Peterson · 10 years ago
  74. 5fbc7b1 Issue #21435: Segfault in gc with cyclic trash by Tim Peters · 10 years ago
  75. c644e7c Issue #21396: Fix TextIOWrapper(..., write_through=True) to not force a flush() on the underlying binary stream. by Antoine Pitrou · 10 years ago
  76. 9147a96 Issue #21088: Bugfix for curses.window.addch() regression in 3.4.0. by Larry Hastings · 10 years ago
  77. c992608 Issue 21375: Fix possible Py_ssizet overflow in heapq. by Raymond Hettinger · 10 years ago
  78. 8fb74a3 Issue #21374: Fix pickling of DecimalTuple. by Stefan Krah · 10 years ago
  79. 26f82ef Issue #21321: itertools.islice() now releases the reference to the source iterator when the slice is exhausted. by Antoine Pitrou · 10 years ago
  80. 4a173bc Fixes for KFreeBSD and the Hurd: by doko@ubuntu.com · 10 years ago
  81. 7646620 #15840: make docs consistent by saying operations on closed files raise ValueError. by Andrew Kuchling · 10 years ago
  82. efeb9da Add conditional code for android's lack of definition of SYS_getdent64. by Gregory P. Smith · 10 years ago
  83. 70d92a9 merge 3.3 by Benjamin Peterson · 10 years ago
  84. 9beee04 merge 3.2 by Benjamin Peterson · 10 years ago
  85. 6ef2b36 disallow a negative idx parameter by Benjamin Peterson · 10 years ago
  86. 584f5cb merge 3.3 by Benjamin Peterson · 10 years ago
  87. 156285c merge 3.2 by Benjamin Peterson · 10 years ago
  88. 99b5afa in scan_once, prevent the reading of arbitrary memory when passed a negative index by Benjamin Peterson · 10 years ago
  89. e7d532f Issue #6676: Ensure a meaningful exception is raised when attempting by Ned Deily · 10 years ago
  90. d9a7352 Issue #21036: Fix typo in macro name by Victor Stinner · 10 years ago
  91. 0bebbc3 Issue #21015: SSL contexts will now automatically select an elliptic curve for ECDH key exchange on OpenSSL 1.0.2 and later, and otherwise default to "prime256v1". by Antoine Pitrou · 10 years ago
  92. ed6783f Issue #10141, Issue 20065: Changed #if to take CAN_RAW into account. by Vinay Sajip · 10 years ago
  93. ecfc98c Issue #10141: updated new usages of AF_CAN to be in #ifdef AF_CAN rather than #ifdef HAVE_LINUX_CAN_H to allow compilation on older Linuxes. by Vinay Sajip · 10 years ago
  94. 373f0a9 Isuse #12328, #20978: Add _winapi.WAIT_ABANDONED_0 symbol, needed by by Victor Stinner · 10 years ago
  95. fca2866 merge 3.3 (#20946) by Benjamin Peterson · 10 years ago
  96. fda3355 fix ctypes test alignment assumptions (closes #20946) by Benjamin Peterson · 10 years ago
  97. 466eaaa merge 3.3 by Benjamin Peterson · 10 years ago
  98. c77e7a4 only define zero constant when it is used by Benjamin Peterson · 10 years ago
  99. ce68c19 remove unused zero constants by Benjamin Peterson · 10 years ago
  100. ccdf352 Issue #20283: RE pattern methods now accept the string keyword parameters by Serhiy Storchaka · 10 years ago