summaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
* bpo-37337: Add _PyObject_VectorcallMethod() (GH-14228)Jeroen Demeyer2019-06-287-33/+105
* bpo-37432: Doc: Fix signature of PyObject_Del() (GH-14430)Hai Shi2019-06-281-1/+1
* closes bpo-37437: Update vendorized expat to 2.2.7. (GH-14436)Benjamin Peterson2019-06-287-32/+22
* bpo-37390: Add audit event table to documentations (GH-14406)Steve Dower2019-06-2734-113/+266
* bpo-30345: travis: use -Og with --with-pydebug (GH-14423)Inada Naoki2019-06-271-1/+2
* closes bpo-37420: Handle errors during iteration in os.sched_setaffinity. (GH...Brandt Bucher2019-06-273-0/+6
* Replace deprecation warning with RuntimeError (GH-14397)Andrew Svetlov2019-06-272-4/+8
* bpo-33926: enable GDB tests on Travis CI (GH-14395)Jeroen Demeyer2019-06-271-2/+2
* bpo-35389: platform.platform() calls libc_ver() without executable (GH-14418)Victor Stinner2019-06-271-1/+1
* bpo-37421: Fix test_shutil: don't leak temporary files (GH-14416)Victor Stinner2019-06-262-2/+4
* bpo-37376: pprint support for SimpleNamespace (GH-14318)Carl Bordum Hansen2019-06-266-0/+98
* bpo-37419: Fix possible segfaults when passing large sequences to os.posix_sp...Zackery Spytz2019-06-261-1/+1
* bpo-29412: Fix indexError when parsing a header value ending unexpectedly (GH...Abhilash Raj2019-06-263-0/+22
* bpo-37417: Fix error handling in bytearray.extend. (GH-14407)Brandt Bucher2019-06-263-0/+11
* bpo-37411: Rewrite test_wsgiref.testEnviron() (GH-14394)Victor Stinner2019-06-262-24/+56
* bpo-37163: Make the obj argument of dataclasses.replace() a positional-only. ...Serhiy Storchaka2019-06-263-2/+3
* bpo-37414: Remove sys.callstats() (GH-14398)Victor Stinner2019-06-264-77/+9
* Improve Windows commands in tutorial (GH-14379)Steve Dower2019-06-262-12/+10
* bpo-37412: os.getcwdb() now uses UTF-8 on Windows (GH-14396)Victor Stinner2019-06-265-59/+88
* bpo-37406: sqlite3 raises TypeError for wrong operation type (GH-14386)Victor Stinner2019-06-266-16/+11
* bpo-37388: Add PyUnicode_Decode(str, 0) fast-path (GH-14385)Victor Stinner2019-06-251-0/+4
* bpo-37388: Development mode check encoding and errors (GH-14341)Victor Stinner2019-06-2510-6/+315
* bpo-37244: Fix test_multiprocessing.test_resource_tracker() (GH-14288)Pierre Glaser2019-06-251-6/+15
* bpo-36888, test_multiprocessing: Increase test_parent_process timeout (GH-14286)Pierre Glaser2019-06-251-3/+3
* bpo-33972: Fix EmailMessage.iter_attachments raising AttributeError. (GH-14119)Abhilash Raj2019-06-253-1/+21
* bpo-37400: Fix test_os.test_chown() (GH-14374)Victor Stinner2019-06-252-11/+10
* bpo-20443: _PyConfig_Read() gets the absolute path of run_filename (GH-14053)Victor Stinner2019-06-2510-42/+211
* bpo-37392: Update the dir(sys) in module tutorial (GH-14365)Xtreak2019-06-251-16/+20
* bpo-37400: pythoninfo logs getpwuid and getgrouplist (GH-14373)Victor Stinner2019-06-251-30/+65
* Fix minor spelling error in What's new for Python 3.8 (GH-14371)Pablo Galindo2019-06-251-1/+1
* bpo-24214: Fixed the UTF-8 and UTF-16 incremental decoders. (GH-14304)Serhiy Storchaka2019-06-254-6/+36
* bpo-37393: Fix deprecation warnings in test_ntpath. (GH-14357)Zackery Spytz2019-06-251-2/+0
* bpo-36546: Mark first argument as position only (GH-14363)Raymond Hettinger2019-06-252-1/+5
* bpo-37394: Fix pure Python implementation of the queue module (GH-14351)Pablo Galindo2019-06-253-51/+111
* bpo-35224: Add What's new entry for evaluation order in dict comprehensions (...Pablo Galindo2019-06-251-0/+8
* bpo-37392: Remove sys.setcheckinterval() (GH-14355)Victor Stinner2019-06-259-148/+14
* bpo-4963: Fix for initialization and non-deterministic behavior issues in mim...David K. Hess2019-06-244-120/+188
* bpo-25361: Enable SSE2 instructions for Windows 32-bit build (GH-12438)animalize2019-06-242-1/+1
* bpo-35360: Update Windows builds to use SQLite 3.28.0 (GH-14179)animalize2019-06-244-3/+4
* bpo-36889: Document asyncio Stream and StreamServer (GH-14203)Xtreak2019-06-243-65/+280
* bpo-32627: Fix compile error when conflicting `_uuid` headers included (GH-11...ziheng2019-06-242-3/+7
* Get rid of exception traceback printing in asyncio tests (GH-14343)Andrew Svetlov2019-06-241-2/+2
* bpo-37363: Add audit events for a range of modules (GH-14301)Steve Dower2019-06-2437-18/+165
* bpo-37359: Fix regrtest --cleanup (GH-14336)Victor Stinner2019-06-241-1/+1
* bpo-36974: inherit tp_vectorcall_offset unconditionally (GH-13858)Jeroen Demeyer2019-06-244-7/+18
* bpo-37359: Add --cleanup option to python3 -m test (GH-14332)Victor Stinner2019-06-245-14/+65
* bpo-37345: Add formal UDPLITE support (GH-14258)Gabe Appleton2019-06-244-0/+217
* bpo-37348: optimize decoding ASCII string (GH-14283)Inada Naoki2019-06-242-34/+53
* bpo-35224: Bump the pyc magic number by 1 instead of by 10 in last modificati...Pablo Galindo2019-06-232-3/+3
* bpo-35224: Bump the pyc magic number after the change in MAP_ADD (GH-14313)Pablo Galindo2019-06-222-122/+124