summaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
* bpo-36710: Add runtime variable to Py_InitializeEx() (GH-12939)Victor Stinner2019-04-246-71/+104
* bpo-36710: Add runtime variable to Py_FinalizeEx() (GH-12937)Victor Stinner2019-04-244-24/+29
* bpo-30840: Document relative imports (#12831)Joannah Nanjekye2019-04-243-1/+43
* bpo-36710: PyOS_AfterFork_Child() pass runtime parameter (GH-12936)Victor Stinner2019-04-244-42/+43
* bpo-36710: Add runtime parameter to _PyThreadState_Init() (GH-12935)Victor Stinner2019-04-244-67/+80
* bpo-36707: Remove the "m" flag (pymalloc) from SOABI (GH-12931)Victor Stinner2019-04-243-6/+9
* fix typo in gzip.py (GH-12928)Maximilian Nöthe2019-04-241-1/+1
* bpo-36454: Fix test_time.test_monotonic() (GH-12929)Victor Stinner2019-04-232-2/+6
* replace 'sequencial argument' by 'positional' in doc (GH-12925)Mathieu Dupuy2019-04-231-1/+1
* bpo-18372: Add missing PyObject_GC_Track() calls in the pickle module (GH-8505)Zackery Spytz2019-04-232-0/+5
* fix warnings by adding more const (GH-12924)Inada Naoki2019-04-236-23/+18
* bpo-36635, bpo-36696: Fix setup.py on AIX (GH-12922)Victor Stinner2019-04-231-3/+3
* use `const` in graminit.c (GH-12713)tyomitch2019-04-233-418/+418
* bpo-36018: Make "seed" into a keyword only argument (GH-12921)Raymond Hettinger2019-04-232-2/+2
* bpo-35904: Add missing fmean() entry to the summary table (GH-12919)Raymond Hettinger2019-04-231-0/+1
* Document that TestCase.assertCountEqual() can take iterables (GH-686)jkleint2019-04-231-3/+2
* Add module specification: itemgetter -> operator.itemgetter (GH-12823)Jakub Molinski2019-04-231-1/+1
* bpo-36546: Add statistics.quantiles() (#12710)Raymond Hettinger2019-04-235-7/+251
* bpo-36679: Rename duplicate test_class_getitem function (GH-12892)Windson yang2019-04-221-1/+1
* bpo-36680: Rename duplicate test_source_from_cache_path_like_arg function (GH...Windson yang2019-04-221-1/+1
* bpo-36681: Remove duplicate test_regression_29220 function (GH-12894)Windson yang2019-04-221-6/+0
* bpo-36682: Rename duplicate tests in test_sys_setprofile (GH-12895)Windson yang2019-04-221-2/+2
* bpo-36683: Rename duplicate test_io_encoding to test_pyio_encoding (GH-12896)Windson yang2019-04-221-1/+1
* bpo-36678: Rename duplicate tests in test_dataclasses (GH-12899)Windson yang2019-04-221-15/+3
* Fixes platform.win32_ver on non-Windows platforms (GH-12912)Steve Dower2019-04-221-12/+12
* bpo-33608: Normalize atomic macros so that they all expect an atomic struct (...Steve Dower2019-04-221-24/+36
* bpo-36672: Fix a compiler warning in winreg.SetValue() (GH-12882)Zackery Spytz2019-04-221-1/+1
* bpo-9194: Fix the bounds checking in winreg.c's fixupMultiSZ() (GH-12687)Zackery Spytz2019-04-221-1/+1
* bpo-29734: Cleanup test_getfinalpathname_handles test (GH-12908)Berker Peksag2019-04-221-21/+14
* bpo-36690: Fix typo in Tools/demo/rpython.py (GH-12903)周家未2019-04-221-1/+1
* bpo-36523: Add docstring to io.IOBase.writelines (GH-12683)Marcin Niemira2019-04-224-3/+18
* Doc: add the missing ".tp_flags" in type definition (GH-12902)Wu Wei2019-04-221-0/+1
* bpo-23078: Add support for {class,static}method to mock.create_autospec() (G...Xtreak2019-04-225-2/+81
* bpo-24011: Use PyModule_Add{Object,IntMacro} in PyInit__signal() (GH-12765)Joannah Nanjekye2019-04-221-7/+5
* bpo-36645: Fix ambiguous formatting in re.sub() documentation (GH-12879)mollison2019-04-211-0/+1
* Fix typo (GH-12878)Fredrik Averpil2019-04-201-1/+1
* bpo-36650: Fix handling of empty keyword args in C version of lru_cache. (GH-...Raymond Hettinger2019-04-203-4/+21
* ctypes: remove use of legacy unicode API (GH-12340)Inada Naoki2019-04-192-15/+19
* bpo-30485: Change the prefix for defining the default namespace in ElementPat...Stefan Behnel2019-04-184-11/+7
* bpo-36651: Fixed Asyncio Event Loop documentation inconsistency (GH-12866)Enrico Alarico Carbognani2019-04-181-3/+3
* bpo-36635: Add _testinternalcapi module (GH-12841)Victor Stinner2019-04-1813-49/+172
* bpo-36071 Add support for Windows ARM32 in ctypes/libffi (GH-12059)Paul Monson2019-04-187-8/+31
* bpo-36638: Fix WindowsLoadTracker exception on some Windows versions (GH-12849)Paul Monson2019-04-181-2/+7
* Fix wrong indentation of a paragraph in documentation (GH-12868)cocoatomo2019-04-181-2/+2
* bpo-32913: Added re.Match.groupdict example to regex HOWTO (GH-5821)josh2019-04-172-0/+8
* bpo-36649: Remove trailing spaces for registry keys when installed via the St...Steve Dower2019-04-172-7/+7
* bpo-36635: Change pyport.h for Py_BUILD_CORE_MODULE define (GH-12853)Victor Stinner2019-04-1726-56/+97
* bpo-32849: Fix is_valid_fd() on FreeBSD (GH-12852)Victor Stinner2019-04-172-15/+25
* bpo-35755: Don't say "to mimick Unix which command behavior" (GH-12861)Victor Stinner2019-04-173-4/+3
* bpo-31904: Port test_resource to VxWorks (GH-12719)Lihua Zhao2019-04-173-0/+7