104109 Commits (b16b4e45923f4e4dfd8e970ae4e6a934faf73b79)
 

Author SHA1 Message Date
Victor Stinner b16b4e4592
bpo-36763: Add PyMemAllocatorName (GH-13387) 7 years ago
Christian Heimes 80ed353329 Simplify SSLSocket / SSLObject doc string (GH-9972) 7 years ago
redshiftzero f98c3c59c0 docs 36789: resolve incorrect note regarding UTF-8 (GH-13111) 7 years ago
Pablo Galindo af8646c805
bpo-1875: Raise SyntaxError in invalid blocks that will be optimised away (GH-13332) 7 years ago
Jeroen Demeyer a8b46944d7 Fix typo in _PyMethodDef_RawFastCallKeywords error message (GH-13343) 7 years ago
Ned Batchelder 6faad355db bpo-36908: 'This module is always available' isn't helpful. (#13297) 7 years ago
Stéphane Wirtel cbb6484573 Doc: Replace the deprecated highlightlang directive by highlight. (#13377) 7 years ago
Victor Stinner fed02e15b3
bpo-36763: Remove _PyCoreConfig.program (GH-13373) 7 years ago
Stefan Hoelzl 245f528a92 Doc: Add link threading.settrace to sys.settrace (GH-13345) 7 years ago
Erwan Le Pape ac8eb8f36b bpo-35545: Fix asyncio discarding IPv6 scopes (GH-11271) 7 years ago
Zackery Spytz 14514d9084 bpo-36946: Fix possible signed integer overflow when handling slices. (GH-13375) 7 years ago
Victor Stinner 870b035bc6
bpo-36763: Cleanup precmdline in _PyCoreConfig_Read() (GH-13371) 7 years ago
Pablo Galindo aee19f54f6
bpo-36751: Undeprecate getfullargspec (GH-13245) 7 years ago
Victor Stinner 54b43bb3bb
bpo-36763: Add _PyCoreConfig.configure_c_stdio (GH-13363) 7 years ago
Victor Stinner 9ef5dcaa0b
bpo-36763: Add _Py_InitializeMain() (GH-13362) 7 years ago
Victor Stinner ae239f6b06
bpo-36763: Add _PyCoreConfig.parse_argv (GH-13361) 7 years ago
Andrew Svetlov 68b34a7204 bpo-36921: Deprecate @coroutine for sake of async def (GH-13346) 7 years ago
Victor Stinner dbacfc2273
bpo-36763: _PyInitError always use int for exitcode (GH-13360) 7 years ago
Andrew Svetlov 6e78900282 bpo-35589: Prevent buffer copy in sock_sendall() (GH-11418) 7 years ago
Inada Naoki bfba8c373e
bpo-36748: optimize TextIOWrapper.write() for ASCII string (GH-13002) 7 years ago
Terry Jan Reedy 8a533ffb49
Fix typos in documentation. Patch by tirkarthi. (GH-13354) 7 years ago
Xtreak 9b5a0efcdc Fix typos in documentation (#13344) 7 years ago
Paul Monson 4f820723c8 bpo-36511: Windows arm32 buildbot changes (remove extra space) (GH-13351) 7 years ago
Paul Monson 67ff6a103a bpo-36511: Windows ARM32 buildbot changes (GH-12917) 7 years ago
Paul Monson fb7e7505ed bpo-35926: Add support for OpenSSL 1.1.1b on Windows (GH-11779) 7 years ago
‮zlohhcuB treboR d9e006bcef bpo-33123: pathlib: Add missing_ok parameter to Path.unlink (GH-6191) 7 years ago
Antoine Pitrou 1a2dd82f56
bpo-36786: Run compileall in parallel during "make install" (GH-13078) 7 years ago
Jon Janzen c981ad16b0 bpo-26707: Enable plistlib to read UID keys. (GH-12153) 7 years ago
Xtreak e307e5cd06 Reference zipimport source code from docs. (GH-13310) 7 years ago
Yavor Konstantinov 133fc89ca0 bpo-36799: Fix typo in ctypes.rst (GH-13104) 7 years ago
Victor Stinner 5eb8b07f87
bpo-36763: InitConfigTests tests all core config (GH-13331) 7 years ago
Andrew Svetlov 54b74fe9df
bpo-36801: Temporarily fix regression in writer.drain() (#13330) 7 years ago
Victor Stinner 91c99873d1
bpo-36763: Add test for _PyCoreConfig_SetString() (GH-13275) 7 years ago
Gregory P. Smith e883091abf
bpo-36760: Clarify subprocess capture_output docs. (GH-13322) 7 years ago
Victor Stinner d97adfb409
bpo-36618: Don't add -fmax-type-align=8 flag for clang (GH-13320) 7 years ago
Krzysztof Wojcik c1f5667be1 bpo-33529, email: Fix infinite loop in email header encoding (GH-12020) 7 years ago
Hervé Beraud 4d45a3b110 json.tool: use stdin and stdout in default cmdlne arguments (GH-11992) 7 years ago
Andrew Svetlov f12ba7cd0a bpo-36916: asyncio: Swallow unhandled write() exception (GH-13313) 7 years ago
Victor Stinner c96be811fa
bpo-36900: Replace global conf vars with config (GH-13299) 7 years ago
Victor Stinner 3c93153f7d
bpo-36915: regrtest always remove tempdir of worker processes (GH-13312) 7 years ago
Rémi Lapeyre 2bc158fefe Change WriterObj.writeline to WriterObj.write (GH-12344) 7 years ago
Vinodhini Balusamy c0a1a07c7e bpo-32995 - Added context variable in glossary (GH-9741) 7 years ago
Nick Coghlan dae1229729
bpo-36797: Prune more legacy distutils documentation (GH-13092) 7 years ago
Stéphane Wirtel 0a52d73dde Doc: Update pip and setuptools when creating the virtual environment (GH-13307) 7 years ago
Nicolai Moore 5e48e3db6f bpo-36845: validate integer network prefix when constructing IP networks (GH-13298) 7 years ago
Inada Naoki f0be4bbb9b
bpo-27987: pymalloc: align by 16bytes on 64bit platform (GH-12850) 7 years ago
Victor Stinner c923c3449f
bpo-36719: Fix regrtest MultiprocessThread (GH-13301) 7 years ago
wim glenn 1a10a6b980 Simplify the ``LastUpdatedOrderedDict`` example recipe (GH-13296) 7 years ago
Jens Troeger 45b2f8893c bpo-34424: Handle different policy.linesep lengths correctly. (#8803) 7 years ago
Anders Hovmöller 8da5ebe11e bpo-35138: Added an example for timeit.timeit with callable arguments (GH-9787) 7 years ago