index
:
cpython.git
2.7
3.3
3.4
3.5
3.6
benjamin-clang
benjamin-iteration-torture
buildbot-custom
master
https://github.com/python/cpython.git
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
Commit message (
Expand
)
Author
Age
Files
Lines
*
bpo-36710: Add runtime variable to Py_InitializeEx() (GH-12939)
Victor Stinner
2019-04-24
6
-71/+104
*
bpo-36710: Add runtime variable to Py_FinalizeEx() (GH-12937)
Victor Stinner
2019-04-24
4
-24/+29
*
bpo-30840: Document relative imports (#12831)
Joannah Nanjekye
2019-04-24
3
-1/+43
*
bpo-36710: PyOS_AfterFork_Child() pass runtime parameter (GH-12936)
Victor Stinner
2019-04-24
4
-42/+43
*
bpo-36710: Add runtime parameter to _PyThreadState_Init() (GH-12935)
Victor Stinner
2019-04-24
4
-67/+80
*
bpo-36707: Remove the "m" flag (pymalloc) from SOABI (GH-12931)
Victor Stinner
2019-04-24
3
-6/+9
*
fix typo in gzip.py (GH-12928)
Maximilian Nöthe
2019-04-24
1
-1/+1
*
bpo-36454: Fix test_time.test_monotonic() (GH-12929)
Victor Stinner
2019-04-23
2
-2/+6
*
replace 'sequencial argument' by 'positional' in doc (GH-12925)
Mathieu Dupuy
2019-04-23
1
-1/+1
*
bpo-18372: Add missing PyObject_GC_Track() calls in the pickle module (GH-8505)
Zackery Spytz
2019-04-23
2
-0/+5
*
fix warnings by adding more const (GH-12924)
Inada Naoki
2019-04-23
6
-23/+18
*
bpo-36635, bpo-36696: Fix setup.py on AIX (GH-12922)
Victor Stinner
2019-04-23
1
-3/+3
*
use `const` in graminit.c (GH-12713)
tyomitch
2019-04-23
3
-418/+418
*
bpo-36018: Make "seed" into a keyword only argument (GH-12921)
Raymond Hettinger
2019-04-23
2
-2/+2
*
bpo-35904: Add missing fmean() entry to the summary table (GH-12919)
Raymond Hettinger
2019-04-23
1
-0/+1
*
Document that TestCase.assertCountEqual() can take iterables (GH-686)
jkleint
2019-04-23
1
-3/+2
*
Add module specification: itemgetter -> operator.itemgetter (GH-12823)
Jakub Molinski
2019-04-23
1
-1/+1
*
bpo-36546: Add statistics.quantiles() (#12710)
Raymond Hettinger
2019-04-23
5
-7/+251
*
bpo-36679: Rename duplicate test_class_getitem function (GH-12892)
Windson yang
2019-04-22
1
-1/+1
*
bpo-36680: Rename duplicate test_source_from_cache_path_like_arg function (GH...
Windson yang
2019-04-22
1
-1/+1
*
bpo-36681: Remove duplicate test_regression_29220 function (GH-12894)
Windson yang
2019-04-22
1
-6/+0
*
bpo-36682: Rename duplicate tests in test_sys_setprofile (GH-12895)
Windson yang
2019-04-22
1
-2/+2
*
bpo-36683: Rename duplicate test_io_encoding to test_pyio_encoding (GH-12896)
Windson yang
2019-04-22
1
-1/+1
*
bpo-36678: Rename duplicate tests in test_dataclasses (GH-12899)
Windson yang
2019-04-22
1
-15/+3
*
Fixes platform.win32_ver on non-Windows platforms (GH-12912)
Steve Dower
2019-04-22
1
-12/+12
*
bpo-33608: Normalize atomic macros so that they all expect an atomic struct (...
Steve Dower
2019-04-22
1
-24/+36
*
bpo-36672: Fix a compiler warning in winreg.SetValue() (GH-12882)
Zackery Spytz
2019-04-22
1
-1/+1
*
bpo-9194: Fix the bounds checking in winreg.c's fixupMultiSZ() (GH-12687)
Zackery Spytz
2019-04-22
1
-1/+1
*
bpo-29734: Cleanup test_getfinalpathname_handles test (GH-12908)
Berker Peksag
2019-04-22
1
-21/+14
*
bpo-36690: Fix typo in Tools/demo/rpython.py (GH-12903)
周家未
2019-04-22
1
-1/+1
*
bpo-36523: Add docstring to io.IOBase.writelines (GH-12683)
Marcin Niemira
2019-04-22
4
-3/+18
*
Doc: add the missing ".tp_flags" in type definition (GH-12902)
Wu Wei
2019-04-22
1
-0/+1
*
bpo-23078: Add support for {class,static}method to mock.create_autospec() (G...
Xtreak
2019-04-22
5
-2/+81
*
bpo-24011: Use PyModule_Add{Object,IntMacro} in PyInit__signal() (GH-12765)
Joannah Nanjekye
2019-04-22
1
-7/+5
*
bpo-36645: Fix ambiguous formatting in re.sub() documentation (GH-12879)
mollison
2019-04-21
1
-0/+1
*
Fix typo (GH-12878)
Fredrik Averpil
2019-04-20
1
-1/+1
*
bpo-36650: Fix handling of empty keyword args in C version of lru_cache. (GH-...
Raymond Hettinger
2019-04-20
3
-4/+21
*
ctypes: remove use of legacy unicode API (GH-12340)
Inada Naoki
2019-04-19
2
-15/+19
*
bpo-30485: Change the prefix for defining the default namespace in ElementPat...
Stefan Behnel
2019-04-18
4
-11/+7
*
bpo-36651: Fixed Asyncio Event Loop documentation inconsistency (GH-12866)
Enrico Alarico Carbognani
2019-04-18
1
-3/+3
*
bpo-36635: Add _testinternalcapi module (GH-12841)
Victor Stinner
2019-04-18
13
-49/+172
*
bpo-36071 Add support for Windows ARM32 in ctypes/libffi (GH-12059)
Paul Monson
2019-04-18
7
-8/+31
*
bpo-36638: Fix WindowsLoadTracker exception on some Windows versions (GH-12849)
Paul Monson
2019-04-18
1
-2/+7
*
Fix wrong indentation of a paragraph in documentation (GH-12868)
cocoatomo
2019-04-18
1
-2/+2
*
bpo-32913: Added re.Match.groupdict example to regex HOWTO (GH-5821)
josh
2019-04-17
2
-0/+8
*
bpo-36649: Remove trailing spaces for registry keys when installed via the St...
Steve Dower
2019-04-17
2
-7/+7
*
bpo-36635: Change pyport.h for Py_BUILD_CORE_MODULE define (GH-12853)
Victor Stinner
2019-04-17
26
-56/+97
*
bpo-32849: Fix is_valid_fd() on FreeBSD (GH-12852)
Victor Stinner
2019-04-17
2
-15/+25
*
bpo-35755: Don't say "to mimick Unix which command behavior" (GH-12861)
Victor Stinner
2019-04-17
3
-4/+3
*
bpo-31904: Port test_resource to VxWorks (GH-12719)
Lihua Zhao
2019-04-17
3
-0/+7
[next]