summaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
* bpo-36941: Windows build changes for Windows ARM64 (GH-13365)Paul Monson2019-05-1747-7/+1029
* bpo-36763: Add _PyCoreConfig_InitPythonConfig() (GH-13388)Victor Stinner2019-05-1712-91/+362
* bpo-36763: Add PyMemAllocatorName (GH-13387)Victor Stinner2019-05-1712-112/+119
* Simplify SSLSocket / SSLObject doc string (GH-9972)Christian Heimes2019-05-171-16/+21
* docs 36789: resolve incorrect note regarding UTF-8 (GH-13111)redshiftzero2019-05-171-5/+10
* bpo-1875: Raise SyntaxError in invalid blocks that will be optimised away (GH...Pablo Galindo2019-05-174-9/+33
* Fix typo in _PyMethodDef_RawFastCallKeywords error message (GH-13343)Jeroen Demeyer2019-05-171-1/+1
* bpo-36908: 'This module is always available' isn't helpful. (#13297)Ned Batchelder2019-05-174-13/+12
* Doc: Replace the deprecated highlightlang directive by highlight. (#13377)Stéphane Wirtel2019-05-1774-76/+76
* bpo-36763: Remove _PyCoreConfig.program (GH-13373)Victor Stinner2019-05-175-59/+27
* Doc: Add link threading.settrace to sys.settrace (GH-13345)Stefan Hoelzl2019-05-171-2/+2
* bpo-35545: Fix asyncio discarding IPv6 scopes (GH-11271)Erwan Le Pape2019-05-173-3/+27
* bpo-36946: Fix possible signed integer overflow when handling slices. (GH-13375)Zackery Spytz2019-05-1715-19/+45
* bpo-36763: Cleanup precmdline in _PyCoreConfig_Read() (GH-13371)Victor Stinner2019-05-174-47/+54
* bpo-36751: Undeprecate getfullargspec (GH-13245)Pablo Galindo2019-05-165-60/+20
* bpo-36763: Add _PyCoreConfig.configure_c_stdio (GH-13363)Victor Stinner2019-05-164-3/+37
* bpo-36763: Add _Py_InitializeMain() (GH-13362)Victor Stinner2019-05-1610-39/+129
* bpo-36763: Add _PyCoreConfig.parse_argv (GH-13361)Victor Stinner2019-05-165-36/+109
* bpo-36921: Deprecate @coroutine for sake of async def (GH-13346)Andrew Svetlov2019-05-1612-320/+311
* bpo-36763: _PyInitError always use int for exitcode (GH-13360)Victor Stinner2019-05-164-44/+37
* bpo-35589: Prevent buffer copy in sock_sendall() (GH-11418)Andrew Svetlov2019-05-161-7/+10
* bpo-36748: optimize TextIOWrapper.write() for ASCII string (GH-13002)Inada Naoki2019-05-162-21/+98
* Fix typos in documentation. Patch by tirkarthi. (GH-13354)Terry Jan Reedy2019-05-162-8/+8
* Fix typos in documentation (#13344)Xtreak2019-05-162-2/+2
* bpo-36511: Windows arm32 buildbot changes (remove extra space) (GH-13351)Paul Monson2019-05-151-1/+1
* bpo-36511: Windows ARM32 buildbot changes (GH-12917)Paul Monson2019-05-152-0/+36
* bpo-35926: Add support for OpenSSL 1.1.1b on Windows (GH-11779)Paul Monson2019-05-1512-42/+70
* bpo-33123: pathlib: Add missing_ok parameter to Path.unlink (GH-6191)‮zlohhcuB treboR2019-05-154-3/+23
* bpo-36786: Run compileall in parallel during "make install" (GH-13078)Antoine Pitrou2019-05-155-22/+24
* bpo-26707: Enable plistlib to read UID keys. (GH-12153)Jon Janzen2019-05-157-5/+169
* Reference zipimport source code from docs. (GH-13310)Xtreak2019-05-151-0/+2
* bpo-36799: Fix typo in ctypes.rst (GH-13104)Yavor Konstantinov2019-05-151-2/+2
* bpo-36763: InitConfigTests tests all core config (GH-13331)Victor Stinner2019-05-152-19/+48
* bpo-36801: Temporarily fix regression in writer.drain() (#13330)Andrew Svetlov2019-05-142-26/+1
* bpo-36763: Add test for _PyCoreConfig_SetString() (GH-13275)Victor Stinner2019-05-142-7/+83
* bpo-36760: Clarify subprocess capture_output docs. (GH-13322)Gregory P. Smith2019-05-141-1/+3
* bpo-36618: Don't add -fmax-type-align=8 flag for clang (GH-13320)Victor Stinner2019-05-142-40/+0
* bpo-33529, email: Fix infinite loop in email header encoding (GH-12020)Krzysztof Wojcik2019-05-144-14/+27
* json.tool: use stdin and stdout in default cmdlne arguments (GH-11992)Hervé Beraud2019-05-141-4/+6
* bpo-36916: asyncio: Swallow unhandled write() exception (GH-13313)Andrew Svetlov2019-05-143-1/+15
* bpo-36900: Replace global conf vars with config (GH-13299)Victor Stinner2019-05-149-37/+51
* bpo-36915: regrtest always remove tempdir of worker processes (GH-13312)Victor Stinner2019-05-143-44/+69
* Change WriterObj.writeline to WriterObj.write (GH-12344)Rémi Lapeyre2019-05-141-10/+12
* bpo-32995 - Added context variable in glossary (GH-9741)Vinodhini Balusamy2019-05-142-0/+10
* bpo-36797: Prune more legacy distutils documentation (GH-13092)Nick Coghlan2019-05-1414-70/+60
* Doc: Update pip and setuptools when creating the virtual environment (GH-13307)Stéphane Wirtel2019-05-141-0/+1
* bpo-36845: validate integer network prefix when constructing IP networks (GH-...Nicolai Moore2019-05-144-0/+23
* bpo-27987: pymalloc: align by 16bytes on 64bit platform (GH-12850)Inada Naoki2019-05-142-0/+9
* bpo-36719: Fix regrtest MultiprocessThread (GH-13301)Victor Stinner2019-05-141-4/+55
* Simplify the ``LastUpdatedOrderedDict`` example recipe (GH-13296)wim glenn2019-05-141-1/+1