summaryrefslogtreecommitdiffstats
path: root/Modules
Commit message (Expand)AuthorAgeFilesLines
* Issue #19398: Extra slash no longer added to sys.path components in case ofSerhiy Storchaka2016-11-111-1/+4
* Issue #28653: Fix a refleak in functools.lru_cache.Yury Selivanov2016-11-091-2/+6
* Issue #28585: Restored docstring of os._isdir().Serhiy Storchaka2016-11-082-6/+5
* Issue #28387: Fixed possible crash in _io.TextIOWrapper deallocator whenSerhiy Storchaka2016-11-031-12/+5
* Issue #27517: LZMA compressor and decompressor no longer raise exceptions ifSerhiy Storchaka2016-10-311-0/+5
* Issue #28549: Fixed segfault in curses's addch() with ncurses6.Serhiy Storchaka2016-10-301-8/+9
* Issue #28444: Fix missing extensions modules when cross compiling.Xavier de Gaye2016-10-291-1/+4
* Fixed possible NULL decrefing.Serhiy Storchaka2016-10-281-1/+1
* Issue #28526: Use PyUnicode_AsEncodedString() instead ofSerhiy Storchaka2016-10-271-2/+2
* Issue #24381: Avoid unused function warning when building bundled macOS libffi.Ned Deily2016-10-201-2/+2
* Issue #28379: Added sanity checks and tests for PyUnicode_CopyCharacters().Serhiy Storchaka2016-10-081-0/+34
* ensure read size is initializedBenjamin Peterson2016-10-061-1/+1
* do not leak buffer if mmap is not writableBenjamin Peterson2016-10-061-1/+3
* mmap: do all internal arithmetic with Py_ssize_t while being very careful abo...Benjamin Peterson2016-10-061-109/+78
* Issue #28295: Fixed the documentation and added tests for PyUnicode_AsUCS4().Serhiy Storchaka2016-10-021-0/+31
* Issue #28322: Fixed possible crashes when unpickle itertools objects fromSerhiy Storchaka2016-10-021-5/+35
* Issue #28275: Clean up to avoid use-after-free after bzip decompress failureMartin Panter2016-10-011-1/+3
* Issue #20947: Fixed a gcc warning with -Wstrict-overflow.Serhiy Storchaka2016-09-271-1/+1
* Issue #28275: Fixed possible use adter free in LZMADecompressor.decompress().Serhiy Storchaka2016-09-271-1/+3
* Issue #27897: Fixed possible crash in sqlite3.Connection.create_collation()Serhiy Storchaka2016-09-261-2/+4
* Increase buffer for readlink() in case OS will support longer names one day.Christian Heimes2016-09-231-3/+4
* Add an extra byte for null in case we ever get very long unicode names.Christian Heimes2016-09-231-4/+4
* Issue #28075: Fix test_access_denied in Python 3.5Berker Peksag2016-09-181-2/+4
* Issue #28075: Check for ERROR_ACCESS_DENIED in Windows implementation of os.s...Berker Peksag2016-09-171-2/+4
* Issue #28139: Fix messed up indentationMartin Panter2016-09-175-17/+19
* Issue #28145: Spelling fixesMartin Panter2016-09-161-1/+1
* Issue #27599: Fixed buffer overrun in binascii.b2a_qp() and binascii.a2b_qp().Serhiy Storchaka2016-09-141-5/+7
* Restrict name_length to NAME_MAXLEN in unicodedata_UCD_lookup()Christian Heimes2016-09-141-1/+1
* Issue #28131: Fix a regression in zipimport's compile_source()Berker Peksag2016-09-141-1/+1
* Issue #28019: itertools.count() no longer rounds non-integer step in rangeSerhiy Storchaka2016-09-101-16/+29
* Issue #25758: Prevents zipimport from unnecessarily encoding a filename (patc...Steve Dower2016-09-101-10/+4
* Issue #27895: Spelling fixes (Contributed by Ville Skyttä).Martin Panter2016-09-079-9/+9
* Issue #27570: Avoid zero-length memcpy() calls with null source pointersMartin Panter2016-09-073-13/+25
* do not memcpy from NULLBenjamin Peterson2016-09-071-1/+2
* Issue #27691: Fix ssl module's parsing of GEN_RID subject alternative name fi...Christian Heimes2016-09-061-1/+34
* explicitly cast away constness to silence compiler warningBenjamin Peterson2016-09-061-1/+1
* Backed out changeset 8b6be1341770Benjamin Peterson2016-09-061-0/+2
* remove long double from ctypes value unionBenjamin Peterson2016-09-051-2/+0
* Issue #26470: Use short name rather than name for compression name to fix #27...Christian Heimes2016-09-051-6/+1
* do not pretend to support passing a fd to access()Benjamin Peterson2016-09-052-6/+6
* Issue #26470: Port ssl and hashlib module to OpenSSL 1.1.0.Christian Heimes2016-09-052-104/+242
* Issue #27881: Fixed possible bugs when setting sqlite3.Connection.isolation_l...Serhiy Storchaka2016-09-012-42/+35
* Issue #27861: Fixed a crash in sqlite3.Connection.cursor() when a factorySerhiy Storchaka2016-08-291-2/+11
* Issue #19884: Avoid spurious output on OS X with Gnu ReadlineMartin Panter2016-08-271-12/+15
* Issue #10513: Fix a regression in Connection.commit()Berker Peksag2016-08-261-1/+0
* Issue #21718: cursor.description is now available for queries using CTEsBerker Peksag2016-08-211-6/+5
* Issue #27782: Fix m_methods handling in multiphase initNick Coghlan2016-08-211-1/+32
* merge 3.4 (#27783)Benjamin Peterson2016-08-171-8/+8
|\
| * merge 3.3 (#27783)Benjamin Peterson2016-08-171-8/+7
| |\
| | * rearrange methodcaller_new so that the main error case does not cause uniniti...Benjamin Peterson2016-08-171-8/+7