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
/
Misc
/
NEWS.d
/
next
/
C API
Commit message (
Expand
)
Author
Age
Files
Lines
*
bpo-36379: __ipow__ must be a ternaryfunc, not a binaryfunc (GH-13546)
Zackery Spytz
2019-05-31
1
-0/+2
*
bpo-36974: implement PEP 590 (GH-13185)
Jeroen Demeyer
2019-05-29
1
-0/+2
*
bpo-36922: implement PEP-590 Py_TPFLAGS_METHOD_DESCRIPTOR (GH-13338)
Jeroen Demeyer
2019-05-28
1
-0/+3
*
bpo-36763: Implement the PEP 587 (GH-13592)
Victor Stinner
2019-05-27
1
-0/+1
*
bpo-37017: PyObject_CallMethodObjArgs uses LOAD_METHOD optimization (GH-13516)
Michael J. Sullivan
2019-05-26
1
-0/+4
*
bpo-36763: _Py_RunMain() doesn't call Py_Exit() anymore (GH-13390)
Victor Stinner
2019-05-17
1
-0/+3
*
bpo-36728: Remove PyEval_ReInitThreads() from C API (GH-13241)
Victor Stinner
2019-05-13
1
-0/+2
*
Python 3.8.0a4
v3.8.0a4
Łukasz Langa
2019-05-06
6
-24/+0
*
bpo-36763: Fix Py_SetStandardStreamEncoding() (GH-13028)
Victor Stinner
2019-04-30
1
-0/+2
*
bpo-36025: Fix PyDate_FromTimestamp API (GH-11922)
Paul Ganssle
2019-04-27
1
-0/+5
*
bpo-36641: Add "const" to PyDoc_VAR macro (GH-12854)
Inada Naoki
2019-04-16
1
-0/+2
*
bpo-36389: Change PyMem_SetupDebugHooks() constants (GH-12782)
Victor Stinner
2019-04-11
1
-0/+5
*
bpo-36443: Disable C locale coercion and UTF-8 Mode by default (GH-12589)
Victor Stinner
2019-03-27
1
-0/+6
*
bpo-35810: Incref heap-allocated types in PyObject_Init (GH-11661)
Eddie Elizondo
2019-03-27
1
-0/+4
*
v3.8.0a3
v3.8.0a3
Łukasz Langa
2019-03-25
2
-4/+0
*
bpo-36381: warn when no PY_SSIZE_T_CLEAN defined (GH-12473)
Inada Naoki
2019-03-23
1
-0/+2
*
bpo-36142: Exclude coreconfig.h from Py_LIMITED_API (GH-12111)
Victor Stinner
2019-03-01
1
-0/+2
*
[blurb] v3.8.0a1
Łukasz Langa
2019-02-03
22
-43/+0
*
bpo-35713: Rework Python initialization (GH-11647)
Victor Stinner
2019-01-22
1
-0/+3
*
bpo-33817: Fix _PyBytes_Resize() for empty bytes object. (GH-11516)
Serhiy Storchaka
2019-01-12
1
-0/+1
*
bpo-34193: Fix pluralization in getargs.c and test cases. (GH-8438)
Xtreak
2018-12-21
1
-0/+2
*
bpo-35259: Limit `Py_FinalizeEx()` to `Py_LIMITED_API >= 0x03060000`. (GH-10620)
Arthur Neufeld
2018-12-20
1
-0/+2
*
bpo-34523, bpo-35322: Fix unicode_encode_locale() (GH-10759)
Victor Stinner
2018-11-28
1
-0/+2
*
bpo-35134: Create Include/cpython/ subdirectory (GH-10624)
Victor Stinner
2018-11-23
1
-0/+1
*
bpo-35296: make install now installs the internal API (GH-10665)
Victor Stinner
2018-11-23
1
-0/+2
*
bpo-35081: add NEWS entry for new Include/internal/pycore_*.h files (GH-10666)
Victor Stinner
2018-11-23
1
-0/+2
*
bpo-35059: NEWS entry for macros converted to inline funcs (GH-10671)
Victor Stinner
2018-11-23
1
-0/+3
*
bpo-34725: Adds _Py_SetProgramFullPath so embedders may override sys.executab...
Steve Dower
2018-11-18
1
-0/+1
*
bpo-35081: Make some _PyGC macros internal (GH-10507)
Victor Stinner
2018-11-13
1
-0/+2
*
bpo-30863: Rewrite PyUnicode_AsWideChar() and PyUnicode_AsWideCharString(). (...
Serhiy Storchaka
2018-10-23
1
-0/+2
*
bpo-34910: Ensure that PyObject_Print() always returns -1 on error. (GH-9733)
Zackery Spytz
2018-10-06
1
-0/+2
*
Revert "bpo-34589: Add -X coerce_c_locale command line option (GH-9378)" (GH-...
Victor Stinner
2018-09-19
1
-3/+0
*
bpo-32455: Add jump parameter to dis.stack_effect(). (GH-6610)
Serhiy Storchaka
2018-09-18
1
-0/+1
*
bpo-34589: C locale coercion off by default (GH-9073)
Victor Stinner
2018-09-17
1
-0/+3
*
Revert "bpo-34595: Add %T format to PyUnicode_FromFormatV() (GH-9080)" (GH-9187)
Victor Stinner
2018-09-11
1
-4/+0
*
bpo-34595: Add %T format to PyUnicode_FromFormatV() (GH-9080)
Victor Stinner
2018-09-07
1
-0/+4
*
bpo-34523: Py_DecodeLocale() use UTF-8 on Windows (GH-8998)
Victor Stinner
2018-08-29
1
-0/+2
*
bpo-32500: Fix error messages for sequence and mapping C API. (GH-7846)
Serhiy Storchaka
2018-07-23
1
-0/+4
*
bpo-34127: Fix grammar in error message with respect to argument count (GH-8395)
Xtreak
2018-07-22
1
-0/+2
*
bpo-34008: Allow to call Py_Main() after Py_Initialize() (GH-8043)
Victor Stinner
2018-07-20
1
-0/+1
*
bpo-23927: Make getargs.c skipitem() skipping 'w*'. (GH-8192)
Serhiy Storchaka
2018-07-11
1
-0/+2
*
Forward port 3.7.0 final changes
Ned Deily
2018-06-27
1
-2/+0
*
bpo-33932: Calling Py_Initialize() twice does nothing (GH-7845)
Victor Stinner
2018-06-22
1
-0/+2
*
bpo-33818: PyExceptionClass_Name() will now return "const char *". (GH-7581)
Serhiy Storchaka
2018-06-15
1
-0/+2
*
bpo-33042: Fix pre-initialization sys module configuration (GH-6157)
Nick Coghlan
2018-03-25
1
-0/+2
*
bpo-32374: m_traverse may be called with m_state=NULL (GH-5140)
Marcel Plch
2018-03-17
1
-0/+2
*
Update NEWS, docs, and patchlevel for 3.7.0b1
Ned Deily
2018-01-31
2
-4/+0
*
bpo-32681: Fix an uninitialized variable in the C implementation of os.dup2 (...
Stéphane Wirtel
2018-01-30
1
-0/+2
*
bpo-10381: Add timezone to datetime C API (#5032)
Paul Ganssle
2018-01-24
1
-0/+2
*
Update docs for 3.7.0a4
Ned Deily
2018-01-09
4
-7/+0
[next]