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
/
Python
Commit message (
Expand
)
Author
Age
Files
Lines
*
bpo-32117: Allow tuple unpacking in return and yield statements (gh-4509)
David Cuthbert
2018-09-22
1
-3/+3
*
bpo-34762: Fix contextvars C API to use PyObject* pointer types. (GH-9473)
Yury Selivanov
2018-09-21
1
-23/+62
*
Revert "bpo-34589: Add -X coerce_c_locale command line option (GH-9378)" (GH-...
Victor Stinner
2018-09-19
2
-90/+41
*
bpo-34125: Enable profiling of method_descriptor in all cases (GH-8416)
jdemeyer
2018-09-19
1
-3/+27
*
bpo-25711: Move _ZipImportResourceReader from importlib to zipimport. (GH-9406)
Serhiy Storchaka
2018-09-19
1
-866/+986
*
bpo-25711: Rewrite zipimport in pure Python. (GH-6809)
Serhiy Storchaka
2018-09-18
5
-1352/+2265
*
bpo-32455: Add jump parameter to dis.stack_effect(). (GH-6610)
Serhiy Storchaka
2018-09-18
1
-0/+6
*
bpo-34589: Add -X coerce_c_locale command line option (GH-9378)
Victor Stinner
2018-09-18
1
-35/+79
*
bpo-34589: C locale coercion off by default (GH-9073)
Victor Stinner
2018-09-17
1
-1/+6
*
bpo-34589: Make _PyCoreConfig.coerce_c_locale private (GH-9371)
Victor Stinner
2018-09-17
2
-14/+14
*
bpo-12458: Fix line numbers for multiline expressions. (GH-8774)
Serhiy Storchaka
2018-09-17
3
-3699/+3724
*
closes bpo-34673: Tweaks to make ceval more editable. (GH-9289)
Benjamin Peterson
2018-09-17
1
-136/+136
*
bpo-34651: Only allow the main interpreter to fork. (gh-9279)
Eric Snow
2018-09-14
1
-0/+38
*
bpo-34653: Removed unused function PyParser_SimpleParseStringFilename. (GH-9260)
Eric V. Smith
2018-09-13
1
-6/+0
*
closes bpo-34641: Further restrict the LHS of keyword argument function call ...
Benjamin Peterson
2018-09-13
1
-14/+41
*
closes bpo-34646: Remove PyAPI_* macros from declarations. (GH-9218)
Benjamin Peterson
2018-09-12
7
-24/+26
*
bpo-34637: Make the *start* argument for *sum()* visible as a keyword argumen...
Raymond Hettinger
2018-09-12
2
-8/+9
*
Make sure the line comes from the same node as the col offset. (GH-9189)
Benjamin Peterson
2018-09-11
1
-3/+3
*
Initialize a variable to make the compiler happy. (GH-9153)
Benjamin Peterson
2018-09-11
1
-1/+1
*
closes bpo-31902: Fix the col_offset attribute for ast.Async* nodes to point ...
guoci
2018-09-11
1
-18/+21
*
bpo-34588: Fix an off-by-one error in traceback formatting. (GH-9077)
Benjamin Peterson
2018-09-10
1
-14/+16
*
_Py_CoerceLegacyLocale() restores LC_CTYPE on fail (GH-9044)
Victor Stinner
2018-09-03
1
-1/+13
*
bpo-34408: Prevent a null pointer dereference and resource leakage in `PyInte...
Pablo Galindo
2018-08-31
1
-6/+10
*
bpo-34523: Use _PyCoreConfig instead of globals (GH-9005)
Victor Stinner
2018-08-29
3
-28/+34
*
bpo-34523: Py_FileSystemDefaultEncoding NULL by default (GH-9003)
Victor Stinner
2018-08-29
1
-18/+6
*
bpo-34485: Emit C locale coercion warning later (GH-9002)
Victor Stinner
2018-08-29
1
-8/+7
*
bpo-34523: Support surrogatepass in locale codecs (GH-8995)
Victor Stinner
2018-08-29
1
-25/+87
*
bpo-34523: Py_DecodeLocale() use UTF-8 on Windows (GH-8998)
Victor Stinner
2018-08-29
1
-4/+12
*
bpo-34523: Fix config_init_fs_encoding() (GH-8991)
Victor Stinner
2018-08-29
1
-1/+1
*
bpo-34523: Add _PyCoreConfig.filesystem_encoding (GH-8963)
Victor Stinner
2018-08-29
3
-71/+196
*
bpo-34485: Add _PyCoreConfig.stdio_encoding (GH-8881)
Victor Stinner
2018-08-29
2
-132/+209
*
bpo-34485, Windows: LC_CTYPE set to user preference (GH-8988)
Victor Stinner
2018-08-29
1
-4/+6
*
bpo-34485: stdout uses surrogateescape on POSIX locale (GH-8986)
Victor Stinner
2018-08-29
1
-9/+22
*
bpo-34485: Add _Py_ClearStandardStreamEncoding() (GH-8982)
Victor Stinner
2018-08-28
2
-96/+104
*
bpo-34485: Fix _Py_InitializeCore() for C locale coercion (GH-8979)
Victor Stinner
2018-08-28
2
-12/+16
*
bpo-34485: Enhance init_sys_streams() (GH-8978)
Victor Stinner
2018-08-28
1
-23/+63
*
bpo-34403: On HP-UX, force ASCII for C locale (GH-8969)
Victor Stinner
2018-08-28
3
-52/+97
*
bpo-34527: POSIX locale enables the UTF-8 Mode (GH-8972)
Victor Stinner
2018-08-28
2
-5/+13
*
bpo-34503: Fix refleak in PyErr_SetObject() (GH-8934)
Alexey Izbyshev
2018-08-26
1
-0/+1
*
bpo-34492: Python/coreconfig.c: Fix _Py_wstrlist_copy() (GH-8910)
Alexey Izbyshev
2018-08-24
1
-1/+4
*
closes bpo-34474: Python/bltinmodule.c: Add missing NULL check in builtin_sum...
Alexey Izbyshev
2018-08-24
1
-0/+5
*
bpo-34457: Python/ast.c: Add missing NULL check to alias_for_import_name(). (...
Alexey Izbyshev
2018-08-22
1
-0/+2
*
bpo-34170: _PyCoreConfig_Read() don't replace coerce_c_locale (GH-8658)
Victor Stinner
2018-08-03
2
-17/+17
*
bpo-34301: Add _PyInterpreterState_Get() helper function (GH-8592)
Victor Stinner
2018-08-03
10
-67/+75
*
bpo-31650: Remove _Py_CheckHashBasedPycsMode global config var (GH-8608)
Victor Stinner
2018-08-01
2
-12/+2
*
bpo-34170: Add Python/coreconfig.c for _PyCoreConfig (GH-8607)
Victor Stinner
2018-08-01
5
-76/+964
*
Define _Py_NO_RETURN for Microsoft C compiler (GH-8606)
Victor Stinner
2018-08-01
1
-1/+1
*
bpo-34170: Add _PyCoreConfig._frozen parameter (GH-8591)
Victor Stinner
2018-08-01
1
-2/+10
*
bpo-34113: Fix a crash when using LLTRACE is on (GH-8517)
costypetrisor
2018-07-31
1
-17/+27
*
Add docstrings to public methods from context.c (GH-8531)
Peter Lamut
2018-07-30
2
-17/+79
[next]