summaryrefslogtreecommitdiffstats
path: root/Modules
Commit message (Expand)AuthorAgeFilesLines
* bpo-36504: Fix signed integer overflow in _ctypes.c's PyCArrayType_new(). (GH...Zackery Spytz2019-04-021-1/+1
* bpo-20844: open script file with "rb" mode (GH-12616)Inada Naoki2019-04-011-1/+1
* bpo-36150: Fix possible assertion failures due to _ctypes.c's PyCData_reduce(...Zackery Spytz2019-03-311-4/+5
* bpo-35947: Fix a compiler warning in _ctypes.c's StructUnionType_paramfunc()....Zackery Spytz2019-03-311-1/+1
* bpo-36085: Enable better DLL resolution on Windows (GH-12302)Steve Dower2019-03-293-14/+251
* bpo-35947: Update Windows to the current version of libffi (GH-11797)Paul Monson2019-03-2914-2291/+39
* bpo-36471: Add _Py_RunMain() (GH-12618)Victor Stinner2019-03-291-12/+22
* bpo-35194: cjkcodec: check the encoded value is not truncated (GH-10432)Alexey Izbyshev2019-03-291-18/+20
* bpo-35941: Fix ssl certificate enumeration for windows (GH-12486)kctherookie2019-03-281-20/+89
* bpo-29515: add missing socket.IPPROTO_* constants on Windows (GH-12183)Giampaolo Rodola2019-03-281-1/+46
* bpo-36387: Refactor getenvironment() in _winapi.c. (GH-12482)Serhiy Storchaka2019-03-281-46/+34
* bpo-36443: Disable C locale coercion and UTF-8 Mode by default (GH-12589)Victor Stinner2019-03-271-6/+13
* bpo-36444: Rework _Py_InitializeFromConfig() API (GH-12576)Victor Stinner2019-03-271-41/+19
* bpo-35810: Incref heap-allocated types in PyObject_Init (GH-11661)Eddie Elizondo2019-03-272-4/+5
* bpo-36444: Add _PyCoreConfig._init_main (GH-12572)Victor Stinner2019-03-271-19/+10
* bpo-36444: Remove _PyMainInterpreterConfig (GH-12571)Victor Stinner2019-03-271-269/+1
* bpo-36301: Cleanup preconfig.c and coreconfig.c (GH-12563)Victor Stinner2019-03-261-11/+7
* bpo-36436: Fix _testcapi.pymem_buffer_overflow() (GH-12560)Victor Stinner2019-03-261-0/+4
* bpo-36430: Fix a possible reference leak in itertools.count(). (GH-12551)Zackery Spytz2019-03-261-0/+1
* bpo-36301: Remove _PyCoreConfig.preconfig (GH-12546)Victor Stinner2019-03-261-10/+5
* bpo-36301: Add _Py_GetEnv() function (GH-12542)Victor Stinner2019-03-251-2/+2
* bpo-36301: Add _Py_GetConfigsAsDict() function (GH-12540)Victor Stinner2019-03-251-23/+3
* bpo-36301: Cleanup preconfig code (GH-12535)Victor Stinner2019-03-251-18/+23
* bpo-36421: Fix a possible double decref in _ctypes.c's PyCArrayType_new(). (G...Zackery Spytz2019-03-251-0/+1
* asyncio: PendingDeprecationWarning -> DeprecationWarning (GH-12494)Inada Naoki2019-03-221-2/+2
* bpo-36256: Fix bug in parsermodule when parsing if statements (GH-12477)Pablo Galindo2019-03-211-5/+17
* bpo-36285: Fix integer overflow in the array module. (GH-12317)sth2019-03-201-4/+4
* bpo-8677: use PY_SSIZE_T_CLEAN in socketmodule.c (GH-12467)Inada Naoki2019-03-201-1/+2
* bpo-8677: use PY_SSIZE_T_CLEAN in Modules/_gdbmodule.c (GH-12464)Inada Naoki2019-03-201-9/+27
* bpo-36301: Add _PyRuntime.pre_initialized (GH-12457)Victor Stinner2019-03-201-19/+10
* bpo-36236: Handle removed cwd at Python init (GH-12424)Victor Stinner2019-03-191-9/+11
* bpo-36356: pymain_free() calls _PyRuntime_Finalize() (GH-12435)Victor Stinner2019-03-191-0/+1
* bpo-36356: Release Unicode interned strings on Valgrind (#12431)Victor Stinner2019-03-191-12/+0
* bpo-8677: use PY_SSIZE_T_CLEAN in sqlite (GH-12434)Inada Naoki2019-03-199-0/+9
* bpo-36352: Avoid hardcoded MAXPATHLEN size in getpath.c (GH-12423)Victor Stinner2019-03-191-150/+234
* bpo-36301: Error if decoding pybuilddir.txt fails (GH-12422)Victor Stinner2019-03-191-12/+16
* bpo-36352: Add error handling to getpath.c (GH-12421)Victor Stinner2019-03-181-69/+233
* bpo-36301: Fix Py_Main() memory leaks (GH-12420)Victor Stinner2019-03-181-2/+6
* bpo-36297: remove "unicode_internal" codec (GH-12342)Inada Naoki2019-03-182-184/+2
* bpo-36097: Use only public C-API in the_xxsubinterpreters module (adding as n...Eric Snow2019-03-151-334/+35
* bpo-36301: Add _PyWstrList structure (GH-12343)Victor Stinner2019-03-151-15/+10
* bpo-36127: Argument Clinic: inline parsing code for keyword parameters. (GH-1...Serhiy Storchaka2019-03-1439-606/+4761
* bpo-36254: Fix invalid uses of %d in format strings in C. (GH-12264)Serhiy Storchaka2019-03-1311-19/+19
* bpo-31904: Adapt the _signal module to VxWorks RTOS (GH-12304)pxinwr2019-03-131-0/+7
* bpo-36251: Fix format strings used in match_repr() and stdprinter_repr(). (GH...sth2019-03-101-1/+1
* closes bpo-33376: Update to Unicode 12.0.0. (GH-12256)Benjamin Peterson2019-03-102-26631/+27377
* Rework integer overflow path in math.prod and add more tests (GH-11809)Pablo Galindo2019-03-091-5/+51
* Remove d_initial from the parser as it is unused (GH-12212)tyomitch2019-03-091-1/+1
* bpo-33608: Make sure locks in the runtime are properly re-created. (gh-12245)Eric Snow2019-03-091-0/+1
* bpo-35975: Support parsing earlier minor versions of Python 3 (GH-12086)Guido van Rossum2019-03-072-2/+5