summaryrefslogtreecommitdiff
path: root/Python/compile.c
Commit message (Expand)AuthorAgeFilesLines
* [3.7] bpo-37500: Revert commit 85ed1712e428f93408f56fc684816f9a85b0ebc0 (GH-1...Pablo Galindo2019-07-081-4/+5
* bpo-1875: Raise SyntaxError in invalid blocks that will be optimised away (GH...Miss Islington (bot)2019-05-171-5/+4
* bpo-35284: Fix the error handling in the compiler's compiler_call(). (GH-1062...Zackery Spytz2019-03-221-3/+5
* Fix an incorrect check in compiler_try_except(). (GH-9810)Miss Islington (bot)2018-10-121-1/+2
* bpo-32911: Revert bpo-29463. (GH-7121)Serhiy Storchaka2018-05-291-14/+42
* [3.7] bpo-33475: Fix and improve converting annotations to strings. (GH-6774)...Serhiy Storchaka2018-05-201-1/+1
* [3.7] bpo-33363: raise SyntaxError for async for/with outside async functions...Zsolt Dollenstein2018-04-271-0/+7
* bpo-33132: Fix more reference counting issues in the compiler. (GH-6323)Miss Islington (bot)2018-03-311-4/+2
* bpo-33132: Fix reference counting issues in the compiler. (GH-6209)Miss Islington (bot)2018-03-241-19/+12
* bpo-33041: Fixed jumping if the function contains an "async for" loop. (GH-6154)Serhiy Storchaka2018-03-231-27/+17
* [3.7] bpo-33041: Add missed error checks when compile "async for" (GH-6053) (...Serhiy Storchaka2018-03-101-13/+7
* bpo-32550. Remove the STORE_ANNOTATION bytecode. (GH-5181)Mark Shannon2018-01-291-6/+10
* String annotations [PEP 563] (#4390)Guido van Rossum2018-01-261-2/+24
* bpo-31113: Get rid of recursion in the compiler for normal control flow. (#3015)Serhiy Storchaka2018-01-111-78/+104
* bpo-24340: Fix estimation of the code stack size. (#5076)Serhiy Storchaka2018-01-091-37/+90
* bpo-32439: Clean up the code for compiling comparison expressions. (#5029)Serhiy Storchaka2017-12-301-23/+20
* bpo-32372: Move __debug__ optimization to the AST level. (#4925)Serhiy Storchaka2017-12-251-18/+8
* bpo-32365: Fix a reference leak when compile __debug__. (#4916)Serhiy Storchaka2017-12-181-4/+4
* bpo-27169: The __debug__ constant is now optimized out at compile time. (#4880)Serhiy Storchaka2017-12-151-30/+15
* bpo-29469: Move constant folding to AST optimizer (GH-2858)INADA Naoki2017-12-141-0/+4
* bpo-32176: Set CO_NOFREE in the code object constructor (GH-4675)Nick Coghlan2017-12-031-5/+0
* Add the const qualifier to "char *" variables that refer to literal strings. ...Serhiy Storchaka2017-11-111-1/+1
* bpo-31708: Allow async generator expressions in synchronous functions (#3905)Yury Selivanov2017-10-061-1/+1
* bpo-31709: Drop support for asynchronous __aiter__. (#3903)Yury Selivanov2017-10-061-6/+0
* bpo-31338 (#3374)Barry Warsaw2017-09-141-2/+1
* bpo-31286, bpo-30024: Fixed stack usage in absolute imports with (#3217)Serhiy Storchaka2017-08-291-10/+16
* bpo-30923: Silence fall-through warnings included in -Wextra since gcc-7.0. (...Stefan Krah2017-08-211-2/+3
* bpo-30501: Make the compiler producing optimized code for condition expressio...Serhiy Storchaka2017-06-111-41/+137
* bpo-30024: Circular imports involving absolute imports with binding (#1264)Serhiy Storchaka2017-05-091-2/+2
* bpo-29878: Add global instances of int for 0 and 1. (#852)Serhiy Storchaka2017-03-301-16/+3
* bpo-29463: Add docstring field to some AST nodes. (#46)INADA Naoki2017-02-221-48/+16
* bpo-29607: Fix stack_effect computation for CALL_FUNCTION_EX (#202)Matthieu Dartiailh2017-02-211-1/+1
* Issue #28959: Added private macro PyDict_GET_SIZE for retrieving the size of ...Serhiy Storchaka2016-12-161-17/+9
* Issue #26110: Add LOAD_METHOD/CALL_METHOD opcodes.Yury Selivanov2016-12-131-0/+37
* Issue #28739: f-string expressions no longer accepted as docstrings andSerhiy Storchaka2016-12-111-1/+2
|\
| * Issue #28739: f-string expressions no longer accepted as docstrings andSerhiy Storchaka2016-12-111-1/+2
* | Merge #23722 from 3.6Nick Coghlan2016-12-051-2/+6
|\ \ | |/
| * Issue #23722: improve __classcell__ compatibilityNick Coghlan2016-12-051-2/+6
* | Issue #28823: Simplified compiling with opcode BUILD_MAP_UNPACK.Serhiy Storchaka2016-11-281-5/+2
* | Added the const qualifier to char* variables that refer to readonly internalSerhiy Storchaka2016-11-201-1/+1
|/
* Issue #28701: Replace PyUnicode_CompareWithASCIIString with _PyUnicode_EqualT...Serhiy Storchaka2016-11-161-5/+5
|\
| * Issue #28701: Replace PyUnicode_CompareWithASCIIString with _PyUnicode_EqualT...Serhiy Storchaka2016-11-161-5/+5
* | Issue #28257: Improved error message when pass a non-iterable asSerhiy Storchaka2016-10-021-2/+2
* | Issue #27213: Fixed different issues with reworked CALL_FUNCTION* opcodes.Serhiy Storchaka2016-09-121-5/+4
* | Issue #28076: Variable annotations should be mangled for private names.Guido van Rossum2016-09-111-1/+7
* | Issue #27129: Replaced wordcode related magic constants with macros.Serhiy Storchaka2016-09-111-6/+7
* | Issue #23722: Initialize __class__ from type.__new__()Nick Coghlan2016-09-111-5/+10
* | Rework CALL_FUNCTION* opcodesVictor Stinner2016-09-091-89/+70
* | Issue #28008: Implement PEP 530 -- asynchronous comprehensions.Yury Selivanov2016-09-091-16/+202
* | Issue #28003: Implement PEP 525 -- Asynchronous Generators.Yury Selivanov2016-09-081-5/+8