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
path:
root
/
Modules
Commit message (
Expand
)
Author
Age
Files
Lines
...
*
bpo-34419: selectmodule.c does not compile on HP-UX due to bpo-31938 (GH-8796)
Michael Osipov
2018-08-17
1
-3/+1
*
bpo-34217: Use lowercase for windows headers (GH-8472)
Erik Janssens
2018-08-16
2
-2/+2
*
bpo-34395: Fix memory leaks caused by incautious usage of PyMem_Resize(). (GH...
Sergey Fedoseev
2018-08-16
2
-42/+22
*
bpo-34384: Fix os.readlink() on Windows (GH-8740)
Berker Peksag
2018-08-15
1
-59/+34
*
Minor code clean-up. Don't alter the input vector. Use variables instead. GH-...
Raymond Hettinger
2018-08-12
1
-4/+5
*
Add more tests and assertions for math.hypot() and math.dist() (GH-8747)
Raymond Hettinger
2018-08-12
1
-0/+1
*
Factor-out common code. Also, optimize common cases by preallocating space on...
Raymond Hettinger
2018-08-12
1
-41/+56
*
Replace straight addition with Kahan summation and move max to the end (GH-8727)
Raymond Hettinger
2018-08-11
1
-20/+45
*
Fixed inconsistency in string handling in the Task C implementation (GH-8717)
Alex Grönholm
2018-08-09
1
-5/+9
*
bpo-34270: Make it possible to name asyncio tasks (GH-8547)
Alex Grönholm
2018-08-08
2
-9/+92
*
Remove unneeded PyErr_Clear() calls after PyErr_Print(). (GH-8699)
Zackery Spytz
2018-08-07
1
-3/+0
*
bpo-34170: Fix pymain_run_file() (GH-8660)
Victor Stinner
2018-08-03
1
-6/+6
*
bpo-34301: Add _PyInterpreterState_Get() helper function (GH-8592)
Victor Stinner
2018-08-03
4
-15/+14
*
Fix docstring of Profiler class (GH-8651)
INADA Naoki
2018-08-03
1
-2/+2
*
bpo-34170: Cleanup pymain_run_filename() (GH-8631)
Victor Stinner
2018-08-02
1
-85/+71
*
bpo-34287: Do not use second argument of METH_NOARGS functions (GH-8582)
jdemeyer
2018-08-02
1
-21/+21
*
bpo-31650: Remove _Py_CheckHashBasedPycsMode global config var (GH-8608)
Victor Stinner
2018-08-01
1
-3/+3
*
bpo-34170: Add Python/coreconfig.c for _PyCoreConfig (GH-8607)
Victor Stinner
2018-08-01
1
-910/+13
*
bpo-33499: Fix pymain_init_pycache_prefix() (GH-8596)
Victor Stinner
2018-08-01
1
-10/+10
*
bpo-34170: _PyCoreConfig_Read() defaults to argc=0 (GH-8595)
Victor Stinner
2018-08-01
1
-0/+3
*
bpo-34170: Rename _PyCoreConfig.unbuffered_stdip (GH-8594)
Victor Stinner
2018-08-01
1
-11/+16
*
bpo-34170: Py_Main() updates config when setting Py_InspectFlag (GH-8593)
Victor Stinner
2018-08-01
1
-0/+3
*
bpo-34170: Add _PyCoreConfig._frozen parameter (GH-8591)
Victor Stinner
2018-08-01
2
-3/+8
*
bpo-33089: Add math.dist() for computing the Euclidean distance between two p...
Raymond Hettinger
2018-07-31
2
-1/+120
*
bpo-33871: Fix os.sendfile(), os.writev(), os.readv(), etc. (GH-7931)
Serhiy Storchaka
2018-07-31
1
-17/+20
*
bpo-33729: Fix issues with arguments parsing in hashlib. (GH-8346)
Serhiy Storchaka
2018-07-31
8
-204/+179
*
Remove creation of a list for row_cast_map in pysqlite_cursor_init() (GH-8494)
Sergey Fedoseev
2018-07-30
1
-5/+2
*
bpo-34231: PYTHONBREAKPOINT is not documented on python --help (GH-8475)
Stéphane Wirtel
2018-07-29
1
-0/+2
*
bpo-33089: Multidimensional math.hypot() (GH-8474)
Raymond Hettinger
2018-07-28
2
-68/+64
*
Remove some unused code in _pysqlite_query_execute() (GH-8495)
Sergey Fedoseev
2018-07-27
1
-6/+0
*
bpo-34170: Cleanup pymain_read_conf() (GH-8476)
Victor Stinner
2018-07-26
1
-71/+63
*
bpo-34201: Make ndarray.readonly a bool and use stricter tests in test_buffer...
Serhiy Storchaka
2018-07-26
1
-1/+1
*
bpo-20260: Implement non-bitwise unsigned int converters for Argument Clinic....
Serhiy Storchaka
2018-07-26
6
-95/+47
*
bpo-34197: Make _csv.Dialect attributes booleans. (GH-8440)
Serhiy Storchaka
2018-07-26
1
-15/+16
*
bpo-34170: Enhance _PyCoreConfig_Read() (GH-8468)
Victor Stinner
2018-07-26
1
-66/+78
*
bpo-34228: Allow PYTHONTRACEMALLOC=0 (GH-8467)
Victor Stinner
2018-07-25
1
-7/+16
*
bpo-29097: Forego fold detection on windows for low timestamp values (GH-2385)
Ammar Askar
2018-07-25
1
-1/+16
*
bpo-34218: Fix a leak in _elementtree.c introduced in GH-6769. (GH-8460)
Serhiy Storchaka
2018-07-25
1
-0/+1
*
bpo-34170: Cleanup pymain_run_python() (GH-8455)
Victor Stinner
2018-07-25
1
-107/+67
*
bpo-34170: Add _Py_InitializeFromConfig() (GH-8454)
Victor Stinner
2018-07-25
1
-121/+117
*
bpo-34217: Use lowercase header for Windows (GH-8453)
erikjanss
2018-07-25
1
-1/+1
*
bpo-34170: Add _PyCoreConfig.bytes_warning (GH-8447)
Victor Stinner
2018-07-24
1
-124/+134
*
bpo-34170: Add _PyCoreConfig.isolated (GH-8417)
Victor Stinner
2018-07-24
1
-294/+342
*
bpo-29209: Remove old-deprecated features in ElementTree. (GH-6769)
Serhiy Storchaka
2018-07-24
2
-112/+21
*
bpo-34170: _PyCoreConfig_Read() leaves Py_IsolatedFlag unchanged (GH-8361)
Victor Stinner
2018-07-21
1
-15/+5
*
bpo-34170: Rework _PyCoreConfig_Read() to avoid side effect (GH-8353)
Victor Stinner
2018-07-21
2
-113/+28
*
bpo-34008: Allow to call Py_Main() after Py_Initialize() (GH-8043)
Victor Stinner
2018-07-20
1
-3/+7
*
bpo-30237: Output error when ReadConsole is canceled by CancelSynchronousIo. ...
ValeriyaSinevich
2018-07-19
1
-1/+5
*
bpo-34141: Optimized pickling simple non-recursive values. (GH-8318)
Serhiy Storchaka
2018-07-18
1
-20/+16
*
bpo-34068: _io__IOBase_close_impl could call _PyObject_SetAttrId with an exce...
Zackery Spytz
2018-07-17
1
-5/+7
[prev]
[next]