summaryrefslogtreecommitdiffstats
path: root/Modules
Commit message (Expand)AuthorAgeFilesLines
* bpo-33164: update blake2 implementation (GH-6286)David Carlier2019-05-2322-675/+18361
* bpo-36084: Add native thread ID (TID) to threading.Thread (GH-13463)Jake Tesler2019-05-221-0/+20
* bpo-31862: Port binascii to PEP 489 multiphase initialization (GH-4108)Marcel Plch2019-05-221-34/+103
* bpo-36829: Add sys.unraisablehook() (GH-13187)Victor Stinner2019-05-221-0/+15
* bpo-36648: fix mmap issue for VxWorks (GH-12394)Lihua Zhao2019-05-211-0/+7
* bpo-31904: Add posix module support for VxWorks (GH-12118)pxinwr2019-05-212-12/+70
* Revert "bpo-36084: Add native thread ID to threading.Thread objects (GH-11993...Victor Stinner2019-05-211-16/+0
* bpo-36965: Fix includes in main.c on Windows with non-MSC compilers (GH-13421)Erik Janssens2019-05-211-2/+2
* bpo-36888: Add multiprocessing.parent_process() (GH-13247)Thomas Moreau2019-05-201-0/+1
* bpo-35134: Split traceback.h header (GH-13430)Victor Stinner2019-05-192-0/+2
* bpo-36957: Speed up math.isqrt (#13405)Mark Dickinson2019-05-191-8/+56
* bpo-36957: Add _PyLong_Rshift() and _PyLong_Lshift(). (GH-13416)Serhiy Storchaka2019-05-191-23/+7
* bpo-36887: add math.isqrt (GH-13244)Mark Dickinson2019-05-182-1/+271
* bpo-36763: Add _PyInitError functions (GH-13395)Victor Stinner2019-05-172-0/+2
* bpo-36763: _Py_RunMain() doesn't call Py_Exit() anymore (GH-13390)Victor Stinner2019-05-171-46/+75
* bpo-36782: Created C API wrappers and added missing tests for functions in th...Edison A2019-05-171-1/+169
* bpo-36763: Add _PyCoreConfig_InitPythonConfig() (GH-13388)Victor Stinner2019-05-171-7/+12
* bpo-36763: Add PyMemAllocatorName (GH-13387)Victor Stinner2019-05-171-1/+1
* bpo-36908: 'This module is always available' isn't helpful. (#13297)Ned Batchelder2019-05-172-4/+4
* bpo-36763: Remove _PyCoreConfig.program (GH-13373)Victor Stinner2019-05-171-2/+2
* bpo-36946: Fix possible signed integer overflow when handling slices. (GH-13375)Zackery Spytz2019-05-174-8/+16
* bpo-36763: Add _Py_InitializeMain() (GH-13362)Victor Stinner2019-05-161-3/+3
* bpo-36763: Add _PyCoreConfig.parse_argv (GH-13361)Victor Stinner2019-05-161-1/+1
* bpo-36763: _PyInitError always use int for exitcode (GH-13360)Victor Stinner2019-05-161-26/+22
* bpo-36748: optimize TextIOWrapper.write() for ASCII string (GH-13002)Inada Naoki2019-05-161-21/+95
* bpo-35926: Add support for OpenSSL 1.1.1b on Windows (GH-11779)Paul Monson2019-05-151-1/+1
* bpo-36900: Replace global conf vars with config (GH-13299)Victor Stinner2019-05-142-6/+8
* Change WriterObj.writeline to WriterObj.write (GH-12344)Rémi Lapeyre2019-05-141-10/+12
* bpo-36728: Remove PyEval_ReInitThreads() from C API (GH-13241)Victor Stinner2019-05-131-4/+15
* bpo-36895: remove time.clock() as per removal notice. (GH-13270)Matthias Bussonnier2019-05-131-50/+0
* bpo-36084: Add native thread ID to threading.Thread objects (GH-11993)Jake Tesler2019-05-121-0/+16
* bpo-36856: Handle possible overflow in faulthandler_stack_overflow (GH-13205)Xi Ruoyao2019-05-111-4/+17
* bpo-36710: Add 'ceval' local variable to ceval.c (GH-12934)Victor Stinner2019-05-101-9/+14
* bpo-35983: skip trashcan for subclasses (GH-11841)Jeroen Demeyer2019-05-102-2/+78
* bpo-36814: ensure os.posix_spawn() handles None (GH-13144)Anthony Shaw2019-05-101-1/+1
* bpo-36601: clarify signal handler comment and remove unnecessary pid check. (...Jeroen Demeyer2019-05-101-15/+10
* bpo-30262: Don't expose private objects in sqlite3 (GH-1440)Aviv Palivoda2019-05-091-4/+0
* closes bpo-36861: Update Unicode database to 12.1.0. (GH-13214)Benjamin Peterson2019-05-092-15365/+15369
* bpo-35900: Enable custom reduction callback registration in _pickle (GH-12499)Pierre Glaser2019-05-081-2/+42
* bpo-35900: Add a state_setter arg to save_reduce (GH-12588)Pierre Glaser2019-05-081-8/+40
* bpo-36793: Remove unneeded __str__ definitions. (GH-13081)Serhiy Storchaka2019-05-062-3/+3
* bpo-36594: Fix incorrect use of %p in format strings (GH-12769)Zackery Spytz2019-05-064-8/+8
* bpo-36811: Fix a C compiler warning in _elementtree.c. (GH-13109)Stefan Behnel2019-05-061-1/+1
* Suppress clang warning (GH-12384)Rémi Lapeyre2019-05-031-1/+2
* bpo-28238: Implement "{*}tag" and "{ns}*" wildcard tag selection support for ...Stefan Behnel2019-05-031-1/+14
* bpo-36763: _PyCoreConfig_SetPyArgv() preinitializes Python (GH-13037)Victor Stinner2019-05-021-8/+1
* bpo-36676: Namespace prefix aware parsing support for the ET.XMLParser target...Stefan Behnel2019-05-011-19/+121
* bpo-36673: Implement comment/PI parsing support for the TreeBuilder in Elemen...Stefan Behnel2019-05-012-35/+424
* bpo-36763: Rework _PyInitError API (GH-13031)Victor Stinner2019-05-012-3/+3
* bpo-36734: Fix compilation of faulthandler.c on HP-UX (GH-12970)Victor Stinner2019-04-301-1/+2