summaryrefslogtreecommitdiff
path: root/Python
Commit message (Expand)AuthorAgeFilesLines
* Reuse identifier of PREDICT macros as PREDICT_ID (GH-17155)Denis Chernikov2020-02-211-5/+7
* Revert "bpo-38691 Added a switch to ignore PYTHONCASEOK when -E or -I flags p...Victor Stinner2020-02-191-2649/+2646
* bpo-39573: Clean up modules and headers to use Py_IS_TYPE() function (GH-18521)Dong-hee Na2020-02-171-3/+3
* bpo-38691 Added a switch to ignore PYTHONCASEOK when -E or -I flags passed (#...idomic2020-02-171-2646/+2649
* closes bpo-39630: Update pointers to string literals to be const char *. (GH-...Andy Lester2020-02-132-2/+2
* bpo-35081: Move dtoa.h header to the internal C API (GH-18489)Victor Stinner2020-02-122-0/+2
* bpo-39474: Fix AST pos for expressions like (a)(b), (a)[b] and (a).b. (GH-18477)Serhiy Storchaka2020-02-121-18/+18
* bpo-32856: Optimize the assignment idiom in comprehensions. (GH-16814)Serhiy Storchaka2020-02-121-18/+52
* closes bpo-39605: Fix some casts to not cast away const. (GH-18453)Andy Lester2020-02-114-6/+6
* bpo-39245: Switch to public API for Vectorcall (GH-18460)Petr Viktorin2020-02-117-25/+25
* bpo-39579: Fix Attribute end_col_offset to point at the current node (GH-18405)Lysandros Nikolaou2020-02-071-2/+3
* bpo-39573: Use Py_SET_SIZE() function (GH-18402)Victor Stinner2020-02-073-4/+4
* bpo-39502: Fix 64-bit Python PyTime_localtime() on AIX (GH-18285)Michael Felt2020-02-071-1/+1
* bpo-39573: Use Py_TYPE() macro in Python and Include directories (GH-18391)Victor Stinner2020-02-079-29/+29
* bpo-39573: Use Py_REFCNT() macro (GH-18388)Victor Stinner2020-02-071-1/+1
* bpo-38823: Fix refleaks in _ast initialization error path (GH-17276)Brandt Bucher2020-02-061-176/+354
* bpo-39127: Make _Py_HashPointer's argument be const (GH-17690)Andy Lester2020-02-051-1/+1
* bpo-39542: Declare _Py_AddToAllObjects() in pycore_object.h (GH-18368)Victor Stinner2020-02-051-1/+2
* bpo-39553: Delete HAVE_SXS protected code (GH-18356)Zackery Spytz2020-02-041-15/+0
* bpo-38076 Clear the interpreter state only after clearing module globals (GH-...Eddie Elizondo2020-02-041-2/+3
* bpo-39542: Move object.h debug functions to internal C API (GH-18331)Victor Stinner2020-02-032-0/+2
* bpo-39489: Remove COUNT_ALLOCS special build (GH-18259)Victor Stinner2020-02-034-64/+1
* Update sum comment. (#18240)Brandt Bucher2020-02-011-1/+5
* bpo-39511: PyThreadState_Clear() calls on_delete (GH-18296)Victor Stinner2020-02-011-3/+5
* bpo-39487: Merge duplicated _Py_IDENTIFIER identifiers in C code (GH-18254)Hai Shi2020-01-304-12/+7
* bpo-38631: Replace Py_FatalError() with assert() in ceval.c (GH-18279)Victor Stinner2020-01-301-10/+4
* bpo-38960: DTrace build fix for FreeBSD. (GH-17451)David Carlier2020-01-283-6/+6
* bpo-38644: Pass tstate in ceval.c (GH-18222)Victor Stinner2020-01-281-6/+6
* bpo-38631: Avoid Py_FatalError() in _PyCodecRegistry_Init() (GH-18217)Victor Stinner2020-01-271-16/+21
* bpo-39320: Handle unpacking of **values in compiler (GH-18141)Mark Shannon2020-01-275-3642/+3653
* bpo-39320: Handle unpacking of *values in compiler (GH-17984)Mark Shannon2020-01-234-2308/+2300
* bpo-39427: Document -X opt options in the CLI --help and the man page (GH-18131)Pablo Galindo2020-01-221-1/+32
* bpo-39336: Allow packages to not let their child modules be set on them (#18006)Dino Viehland2020-01-221-337/+346
* bpo-31031: Unify duplicate bits_in_digit and bit_length (GH-2866)Niklas Fiekas2020-01-161-0/+15
* Fix compiler warning on Windows (GH-18012)Ammar Askar2020-01-151-1/+1
* bpo-39164: Fix compiler warning in PyErr_GetExcInfo() (GH-18010)Victor Stinner2020-01-151-1/+1
* bpo-39048: Look up __aenter__ before __aexit__ in async with (GH-17609)Géry Ogam2020-01-141-9/+10
* bpo-39156: Break up COMPARE_OP into four logically distinct opcodes. (GH-17754)Mark Shannon2020-01-147-4753/+4780
* bpo-38644: Pass tstate to _Py_FinishPendingCalls() (GH-17990)Victor Stinner2020-01-132-3/+3
* bpo-39164: Add private _PyErr_GetExcInfo() function (GH-17752)Julien Danjou2020-01-131-4/+10
* Cleanup exit code for interpreter. (GH-17756)Mark Shannon2020-01-131-6/+5
* bpo-39200: Correct the error message for min/max builtin function (GH-17814)Dong-hee Na2020-01-101-2/+7
* bpo-39166: Fix trace of last iteration of async for loops (#17800)Pablo Galindo2020-01-101-5/+9
* bpo-39235: Fix end location for genexp in call args (GH-17925)Guido van Rossum2020-01-091-8/+8
* bpo-39270: Remove dead assignment from config_init_module_search_paths (GH-17...Alex Henrie2020-01-091-2/+1
* closes bpo-39261: Remove dead assignment from pyinit_config. (GH-17907)Alex Henrie2020-01-081-1/+0
* bpo-29778: Fix incorrect NULL check in _PyPathConfig_InitDLLPath() (GH-17818)Anthony Wee2020-01-061-1/+1
* Fix constant folding optimization for positional only arguments (GH-17837)Anthony Sottile2020-01-051-0/+1
* Fix SystemError when nested function has annotation on positional-only argume...Anthony Sottile2020-01-051-0/+2
* Bring Python into the next decade. (GH-17801)Benjamin Peterson2020-01-021-1/+1