summaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
...
* Document a workaround for a curses bug (GH-13209)Toshio Kuratomi2019-05-172-3/+12
* Correct typos in the Barrier specification (GH-9395)Géry Ogam2019-05-171-2/+2
* bpo-36763: _Py_InitializeFromArgs() argc becomes Py_ssize_t (GH-13396)Victor Stinner2019-05-175-53/+25
* bpo-27268: Fix incorrect error message on float('') (GH-2745)Pedro Lacerda2019-05-171-3/+3
* bpo-36763: Add _PyInitError functions (GH-13395)Victor Stinner2019-05-1712-59/+102
* bpo-36763: _Py_RunMain() doesn't call Py_Exit() anymore (GH-13390)Victor Stinner2019-05-174-62/+116
* bpo-36945: Add _PyPreConfig.configure_locale (GH-13368)Victor Stinner2019-05-174-10/+82
* bpo-36782: Created C API wrappers and added missing tests for functions in th...Edison A2019-05-174-4/+265
* bpo-33524: Fix the folding of email header when max_line_length is 0 or None ...Abhilash Raj2019-05-174-2/+20
* bpo-36867: _test_multiprocessing: avoid weak sync primitive (GH-13292)Pierre Glaser2019-05-171-4/+12
* bpo-36942 Windows build changes for Windows ARM64 (GH-13366)Paul Monson2019-05-171-0/+3
* 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