summaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
* bpo-36285: Fix integer overflow in the array module. (GH-12317)sth2019-03-203-4/+146
* bpo-36312: Fix decoders for some code pages. (GH-12369)Serhiy Storchaka2019-03-203-5/+27
* bpo-8677: use PY_DWORD_MAX instead of INT_MAX (GH-12469)Inada Naoki2019-03-201-5/+3
* bpo-8677: use PY_SSIZE_T_CLEAN in PC/winreg.c (GH-12466)Inada Naoki2019-03-201-0/+6
* 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-36374: Fix a possible null pointer dereference (GH-12449)Zackery Spytz2019-03-202-1/+3
* bpo-36301: Add _PyPreCmdline internal API (GH-12458)Victor Stinner2019-03-203-47/+99
* bpo-23984: Improve descriptor documentation (GH-1034)Shubham Aggarwal2019-03-201-2/+2
* bpo-36356: Fix _PyCoreConfig_Read() (GH-12454)Victor Stinner2019-03-201-23/+32
* bpo-36301: Add _PyRuntime.pre_initialized (GH-12457)Victor Stinner2019-03-206-25/+75
* bpo-36362: Avoid unused variables when HAVE_DYNAMIC_LOADING is not defined (G...Stéphane Wirtel2019-03-191-2/+3
* bpo-36365: Rewrite structseq_repr() using _PyUnicodeWriter (GH-12440)Victor Stinner2019-03-192-58/+69
* bpo-35388: Fix _PyRuntime_Finalize() (GH-12443)Victor Stinner2019-03-191-3/+4
* bpo-36324: Improved code formatting for the NormalDist.inv_cdf rational appro...Raymond Hettinger2019-03-191-46/+48
* NormalDist.inv_cdf(): In-line constants because the variable names were not i...Raymond Hettinger2019-03-191-59/+46
* bpo-36236: Fix _PyPathConfig_ComputeSysPath0() for empty argv (GH-12441)Victor Stinner2019-03-191-55/+63
* bpo-36367: Free buffer if realloc fails in tokenize.c (GH-12442)Pablo Galindo2019-03-191-2/+8
* bpo-36236: Handle removed cwd at Python init (GH-12424)Victor Stinner2019-03-195-28/+51
* bpo-36356: pymain_free() calls _PyRuntime_Finalize() (GH-12435)Victor Stinner2019-03-192-0/+3
* bpo-36356: Release Unicode interned strings on Valgrind (#12431)Victor Stinner2019-03-193-29/+42
* bpo-36333, bpo-36356: Fix _PyEval_FiniThreads() (GH-12432)Victor Stinner2019-03-191-2/+11
* bpo-8677: use PY_SSIZE_T_CLEAN in sqlite (GH-12434)Inada Naoki2019-03-199-0/+9
* bpo-36333: Fix leak _PyRuntimeState_Fini (GH-12400)Stéphane Wirtel2019-03-192-0/+6
* bpo-36356: Fix memory leak in _PyPreConfig_Read() (GH-12425)btharper2019-03-192-0/+2
* Add docstrings to the arithmetic methods in NormalDist() (GH-12426)Raymond Hettinger2019-03-191-14/+44
* bpo-36324: Add inv_cdf() to statistics.NormalDist() (GH-12377)Raymond Hettinger2019-03-194-0/+182
* bpo-36352: Avoid hardcoded MAXPATHLEN size in getpath.c (GH-12423)Victor Stinner2019-03-194-157/+245
* bpo-36301: Error if decoding pybuilddir.txt fails (GH-12422)Victor Stinner2019-03-195-16/+32
* 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-183-2/+12
* bpo-36292: Mark unreachable code as such in long bitwise ops (GH-12333)stratakis2019-03-181-4/+2
* bpo-36320: Switch typing.NamedTuple from OrderedDict to regular dict (GH-12396)Raymond Hettinger2019-03-184-13/+28
* bpo-36352: Clarify fileutils.h documentation (GH-12406)Victor Stinner2019-03-182-17/+30
* bpo-36235: Enhance distutils test_customize_compiler() (GH-12403)Victor Stinner2019-03-181-13/+79
* bpo-36328: Fix compiler warning in Py_NewInterpreter() (GH-12381)Stéphane Wirtel2019-03-181-1/+1
* bpo-36332: Allow compile() to handle AST objects with assignment expressions ...Pablo Galindo2019-03-183-3/+17
* bpo-30040: optimize inserting into empty dict (GH-12307)Inada Naoki2019-03-181-2/+49
* bpo-36329: Declare the version of Python to use for Tools/scripts/serve.py (#...Stéphane Wirtel2019-03-182-1/+4
* bpo-36307: Travis: upgrade to Xenial environment (GH-12356)CAM Gerlach2019-03-181-2/+1
* Fix typo in _PyObject_FastCallDict documentation (GH-12383)Rémi Lapeyre2019-03-181-1/+1
* bpo-36321: Fix misspelled attribute in namedtuple() (GH-12375)Raymond Hettinger2019-03-184-8/+15
* bpo-36297: remove "unicode_internal" codec (GH-12342)Inada Naoki2019-03-1812-530/+41
* Fix "catchs" typos in NEWS entries (GH-12364)Harmon2019-03-171-4/+4
* Fix typo in unittest.mock documentation: manger -> manager (GH-12352)Joan Massich2019-03-171-1/+1
* bpo-34745: Fix asyncio sslproto memory issues (GH-12386)Fantix King2019-03-173-0/+77
* bpo-34160: Update news entry for XML order attributes (#12335)Diego Rojas2019-03-162-0/+6
* bpo-23216: IDLE: Add docstrings to search modules (GH-12141)Cheryl Sabella2019-03-164-39/+189
* bpo-35493: Use Process.sentinel instead of sleeping for polling worker status...Pablo Galindo2019-03-162-11/+80
* bpo-35715: Liberate return value of _process_worker (GH-11514)Dave Chevell2019-03-162-0/+2