1. 44e2eaa Issue #19674: inspect.signature() now produces a correct signature by Larry Hastings · 11 years ago
  2. ebdcb50 Issue #19730: Argument Clinic now supports all the existing PyArg by Larry Hastings · 11 years ago
  3. 3a90797 Issue #19722: Added opcode.stack_effect(), which accurately by Larry Hastings · 11 years ago
  4. 32eddc1 Issue #16203: Add re.fullmatch() function and regex.fullmatch() method, by Serhiy Storchaka · 11 years ago
  5. 5c24d0e Issue #13592: Improved the repr for regular expression pattern objects. by Serhiy Storchaka · 11 years ago
  6. c1207c1 Fix signed / unsigned comparison by Antoine Pitrou · 11 years ago
  7. 3062c9a Issue #19641: Added the audioop.byteswap() function to convert big-endian by Serhiy Storchaka · 11 years ago
  8. 2b38fc1 gcc doesn't realize that dummy is always initialized by the function call by Gregory P. Smith · 11 years ago
  9. 310e4c4 merge by Christian Heimes · 11 years ago
  10. e8b1ba1 Issue #17810: Add two missing error checks to save_global by Christian Heimes · 11 years ago
  11. dd52c5a Merge heads by Serhiy Storchaka · 11 years ago
  12. 6787a38 Issue #15204: Deprecated the 'U' mode in file-like objects. by Serhiy Storchaka · 11 years ago
  13. 6188d09 Merge by Antoine Pitrou · 11 years ago
  14. 74d8d63 Issue #17810: return -1 on error by Christian Heimes · 11 years ago
  15. 8f2ee6e Fix writing out 64-bit size fields on 32-bit builds by Antoine Pitrou · 11 years ago
  16. b3d3ee4 Issue #17810: Add NULL check to save_frozenset by Christian Heimes · 11 years ago
  17. c9dc4a2 Issue #17810: Implement PEP 3154, pickle protocol 4. by Antoine Pitrou · 11 years ago
  18. 46c5deb - Modules/_struct.c (unpackiter_type): Define static. by doko@ubuntu.com · 11 years ago
  19. 91a7af3 Issue #19727: os.utime(..., None) is now potentially more precise under Windows. by Antoine Pitrou · 11 years ago
  20. 93965f7 Issue #19634: time.strftime("%y") now raises a ValueError on Solaris when given by Victor Stinner · 11 years ago
  21. 3728d6c Issue #18874: Remove tracemalloc.set_traceback_limit() by Victor Stinner · 11 years ago
  22. ed3b0bc Issue #18874: Implement the PEP 454 (tracemalloc) by Victor Stinner · 11 years ago
  23. 2427b50 Issue #8813: X509_VERIFY_PARAM is only available on OpenSSL 0.9.8+ by Christian Heimes · 11 years ago
  24. 5398e1a Issue #19448: report name / NID in exception message of ASN1Object by Christian Heimes · 11 years ago
  25. f22e8e5 Issue #18147: Add missing documentation for SSLContext.get_ca_certs(). by Christian Heimes · 11 years ago
  26. 44109d7 Issue #17134: Finalize interface to Windows' certificate store. Cert and by Christian Heimes · 11 years ago
  27. ba72320 silence an overflow warning. slen is smaller than 1MB by Christian Heimes · 11 years ago
  28. 1dbf61f downcast len to int. The code has already checked that len < INT_MAX by Christian Heimes · 11 years ago
  29. 18fc7be lst might be NULL here by Christian Heimes · 11 years ago
  30. 2258779 Issue #8813: Add SSLContext.verify_flags to change the verification flags by Christian Heimes · 11 years ago
  31. e079edd Close #18294: Fix the zlib module to make it 64-bit safe by Victor Stinner · 11 years ago
  32. 949ec14 Issue #19682: Fix compatibility issue with old version of OpenSSL that by Christian Heimes · 11 years ago
  33. bd3a7f9 Issue #18379: SSLSocket.getpeercert() returns CA issuer AIA fields, OCSP by Christian Heimes · 11 years ago
  34. efff706 Issue #18138: Implement cadata argument of SSLContext.load_verify_location() by Christian Heimes · 11 years ago
  35. abc716b Issue #19474: Argument Clinic now always specifies a default value for by Larry Hastings · 11 years ago
  36. 985ecdc ssue #19183: Implement PEP 456 'secure and interchangeable hash algorithm'. by Christian Heimes · 11 years ago
  37. e106e5c Issue #19437: Fix error handling of PyCArrayType_new(), don't decreases the by Victor Stinner · 11 years ago
  38. 2399ad5 Issue #19437: Fix error handling of CDataType_from_buffer() by Victor Stinner · 11 years ago
  39. ed4a1c5 Argument Clinic: rename "self" to "module" for module-level functions. by Larry Hastings · 11 years ago
  40. 85ba92a GetVolumePathNameW: downcast bufsize to DWORD by Christian Heimes · 11 years ago
  41. b08ff7d Safely downcast SOCKET_T to int in _ssl module by Christian Heimes · 11 years ago
  42. cc6cdce Remove unused code path from PBKDF2 that is causing a warning on Win64 by Christian Heimes · 11 years ago
  43. 7f4bf9f Issue #19520: Fix (the last!) compiler warning on 32bit Windows, in _sha3 by Zachary Ware · 11 years ago
  44. 136f064 Issue #19634: Fix time_strftime() on AIX, format is a wchar_t* not a PyObject* by Victor Stinner · 11 years ago
  45. afccb0a sqlite: Use Py_ssize_t to store a size instead of an int by Victor Stinner · 11 years ago
  46. 3f658be sqlite: raise an OverflowError if a string or a BLOB is longer than INT_MAX by Victor Stinner · 11 years ago
  47. 83e30bf Fix a compiler warning on Windows 64-bit: _sqlite module by Victor Stinner · 11 years ago
  48. 83ed42b sqlite: raise an OverflowError if the result is longer than INT_MAX bytes by Victor Stinner · 11 years ago
  49. 55329f8 Issue #19634: time.strftime("%y") now raises a ValueError on AIX when given a by Victor Stinner · 11 years ago
  50. 61b976f Fix compilation error under gcc of the ctypes module bundled libffi for arm. by Gregory P. Smith · 11 years ago
  51. 7929a1d Fix compilation error under gcc of the ctypes module bundled libffi for arm. by Gregory P. Smith · 11 years ago
  52. a6bc95a Issue #19448: Add private API to SSL module to lookup ASN.1 objects by OID, NID, short name and long name. by Christian Heimes · 11 years ago
  53. 633db6f Issue #19565: Prevent warnings at shutdown about pending overlapped ops. by Richard Oudkerk · 11 years ago
  54. c610aba Close #19282: Native context management in dbm by Nick Coghlan · 11 years ago
  55. 72967a4 calculate_path() now fails with a fatal error when it fails to allocate memory by Victor Stinner · 11 years ago
  56. 6e51b8f Issue13674 Correct crash with strftime %y format under Windows by Tim Golden · 11 years ago
  57. ce4179d Don't mix wide character strings and byte strings (L"lib/python" VERSION): use by Victor Stinner · 11 years ago
  58. c1a57d3 Fix compiler warnings on Windows 64 bit: add an explicit cast from Py_ssize_t by Victor Stinner · 11 years ago
  59. e990c6e Fix sock_recvfrom_guts(): recvfrom() size is limited to an int on Windows, not by Victor Stinner · 11 years ago
  60. 3b59011 Fix compiler warning on Windows 64 bit: _init_pos_args() result type is by Victor Stinner · 11 years ago
  61. f558778 Fix compiler warning (especially on Windows 64-bit): don't truncate Py_ssize_t by Victor Stinner · 11 years ago
  62. 1109b54 Fix compiler warning on Windows 64-bit: explicit cast size_t to unsigned long by Victor Stinner · 11 years ago
  63. b031427 Issue #19437: Fix parse_envlist() of the posix/nt module, don't call by Victor Stinner · 11 years ago
  64. b80b378 Issue #19437: Fix parse_save_field() of the csv module, handle PyList_Append() by Victor Stinner · 11 years ago
  65. 541067a Issue #19437: Fix array.buffer_info(), handle PyLong_FromVoidPtr() and by Victor Stinner · 11 years ago
  66. 804e05e Issue #19437: Use an identifier for "__name__" string in pickle to improve by Victor Stinner · 11 years ago
  67. 59799a8 Don't use deprecated function PyUnicode_GET_SIZE() by Victor Stinner · 11 years ago
  68. e223439 Issue #19437: Fix ctypes, handle PyCData_GetContainer() and GetKeepedObjects() by Victor Stinner · 11 years ago
  69. 588544d Issue #19437: Fix GetKeepedObjects() of ctypes, handle PyCData_GetContainer() by Victor Stinner · 11 years ago
  70. 7184366 Issue #19437: Fix PyCData_GetContainer() of ctypes, handle PyDict_New() failure by Victor Stinner · 11 years ago
  71. 651f9f7 Issue #19515: Remove duplicated identifiers in zipimport.c by Victor Stinner · 11 years ago
  72. 3f36a57 Issue #19515: Remove identifiers duplicated in the same file. by Victor Stinner · 11 years ago
  73. bbe268f Issue13674 Correct crash with strftime %y format under Windows by Tim Golden · 11 years ago
  74. 23a7827 Fixed compile error on Windows caused by arithmetic with void * pointers by Serhiy Storchaka · 11 years ago
  75. 711e91b Issue #16685: Added support for any bytes-like objects in the audioop module. by Serhiy Storchaka · 11 years ago
  76. 8ec784c Issue #7171: Update syntax to replace MAX in favor of Py_MAX (matching implementation for Unix). by Jason R. Coombs · 11 years ago
  77. 2fdf4e7 Move PyErr_NoMemory() closer to the failure. by Stefan Krah · 11 years ago
  78. a0fd1f5 Change style to match the surrounding code (no early returns). by Stefan Krah · 11 years ago
  79. ac47085 Issue #19437: Fix dec_format() of the _decimal module, handle dec_strdup() by Victor Stinner · 11 years ago
  80. a992e11 Issue #19437: Fix convert_op_cmp() of decimal.Decimal rich comparator, handle by Victor Stinner · 11 years ago
  81. d5a2f0b #18985: Improve fcntl documentation. by R David Murray · 11 years ago
  82. 5fdb64b #19411: Clarify that b2a_hex/hexlify returns a bytes object. by R David Murray · 11 years ago
  83. 6374120 Issue #19418 Fix some warnings on Win64 by Tim Golden · 11 years ago
  84. fb6b44e Issue #19227 / Issue #18747: Remove pthread_atfork() handler to remove OpenSSL re-seeding by Christian Heimes · 11 years ago
  85. 3797065 #19395: Raise exception when pickling a (BZ2|LZMA)(Compressor|Decompressor). by Nadeem Vawda · 11 years ago
  86. 81be27d Issue #19227: Try to fix deadlocks caused by re-seeding then OpenSSL by Georg Brandl · 11 years ago
  87. efa5a39 Issue #19405: Fixed outdated comments in the _sre module. by Serhiy Storchaka · 11 years ago
  88. 89d8cd9 just return toplevel symbol table rather than all blocks (closes #19393) by Benjamin Peterson · 11 years ago
  89. 7d6392c Issue #19288: Fixed the "in" operator of dbm.gnu databases for string by Serhiy Storchaka · 11 years ago
  90. 9da33ab Issue #19287: Fixed the "in" operator of dbm.ndbm databases for string by Serhiy Storchaka · 11 years ago
  91. be80fc9 Issue #19327: Fixed the working of regular expressions with too big charset. by Serhiy Storchaka · 11 years ago
  92. 09fcb72 Issue #19356: Avoid using a C variabled named "_self", it's a reserved word in some C compilers. by Antoine Pitrou · 11 years ago
  93. 5d4121a Issue #18458: Prevent crashes with newer versions of libedit. Its readline by Ned Deily · 11 years ago
  94. 8aa7b89 replace hardcoded version by Benjamin Peterson · 11 years ago
  95. 577dd61 make sure the docstring is never out of date wrt unicode data version by Benjamin Peterson · 11 years ago
  96. a4cf1c8 remove url from docstring (closes #19220) by Benjamin Peterson · 11 years ago
  97. cb1d96f Issue #18594: Make the C code more closely match the pure python code. by Raymond Hettinger · 11 years ago
  98. 2a8b3f2 Issue #19147: Fix docstring for fcntl.flock to refer to correct man section. by Ned Deily · 11 years ago
  99. 224c87d Issue #18594: Fix the fallback path in collections.Counter(). by Raymond Hettinger · 11 years ago
  100. 2ff2190 Issue #18594: Fix the fast path for collections.Counter(). by Raymond Hettinger · 11 years ago