summaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
* 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
* asyncio: Fix docs for default event loop (#14308)Ben Darnell2019-06-221-1/+1
* bpo-35224: Reverse evaluation order of key: value in dict comprehensions (GH-...Jörn Heissler2019-06-228-7/+53
* Improve threading.daemon docstring (GH-14278)mbarkhau2019-06-221-2/+1
* bpo-37323: Suppress DeprecationWarning raised by @asyncio.coroutine (GH-14293)Xtreak2019-06-221-1/+3
* bpo-37364: Use io.open_code() to read .pth files (GH-14299)Steve Dower2019-06-212-1/+3
* bpo-37351: Removes libpython38.a from standard Windows distribution (#14276)Steve Dower2019-06-216-37/+21
* bpo-37362: test_gdb now ignores stderr (GH-14287)Victor Stinner2019-06-212-34/+16
* Use `python -m pip install` in porting guide and venv docs (GH-13257)Brad2019-06-212-11/+17
* bpo-30202 : Update test.test_importlib.test_abc to test find_spec() (GH-12847)Joannah Nanjekye2019-06-212-4/+18
* bpo-36511: Fix -u parameters for ARM32 tests (GH-14280)Paul Monson2019-06-211-1/+1
* bpo-37316: mmap.mmap() passes the wrong variable to PySys_Audit() (GH-14152)Zackery Spytz2019-06-215-1/+13
* bpo-36210: update optional extension handling for AIX (GH-12202)Michael Felt2019-06-212-8/+26
* Docs: Improved phrasing (GH-14069)Aeros2019-06-211-4/+6
* Remove redundant if check from optional argument function in argparse. (GH-8766)Shashank Parekh2019-06-211-4/+2
* bpo-37289: Add a test for if with ifexpr in the peephole optimiser to detect ...Pablo Galindo2019-06-201-0/+8
* Update What's New in Python 3.9 (GH-14253)Victor Stinner2019-06-202-1/+2
* bpo-36511: Improve ARM32 buildbot scripts (GH-14251)Paul Monson2019-06-203-23/+29
* bpo-37151: remove _PyCFunction_FastCallDict (GH-14269)Jeroen Demeyer2019-06-204-29/+5
* Fix typo, 'widger' -> 'widget', in idlelib/tree.py (GH-14263)İsmail Arılık2019-06-201-1/+1
* Fix bpo number in News file. (GH-14260)Eric V. Smith2019-06-201-1/+1
* bpo-37342: Fix the incorrect nb_index's type in typeobj documentation (GH-14241)Hai Shi2019-06-201-1/+1