summaryrefslogtreecommitdiff
path: root/Python/compile.c
Commit message (Expand)AuthorAgeFilesLines
* Set line number of END_ASYNC_FOR so that it doesn't show in traces. (GH-27255)Mark Shannon2021-07-201-0/+6
* [3.9] bpo-39934: Account for control blocks in 'except' in compiler. (GH-2239...Irit Katriel2020-11-171-8/+11
* bpo-41531: Fix compilation of dict literals with more than 0xFFFF elements (G...Miss Islington (bot)2020-09-051-1/+1
* [3.9] bpo-41218: Only mark async code with CO_COROUTINE. (GH-21357) (GH-21362)Pablo Galindo2020-07-061-4/+6
* Make sure that keyword arguments are merged into the arguments dictionary whe...Miss Islington (bot)2020-06-011-0/+3
* bpo-40334: Don't downcast from Py_ssize_t to int (GH-19671)Pablo Galindo2020-04-231-1/+1
* bpo-40334: PEP 617 implementation: New PEG parser for CPython (GH-19503)Pablo Galindo2020-04-221-0/+67
* bpo-40268: Add _PyInterpreterState_GetConfig() (GH-19492)Victor Stinner2020-04-131-3/+1
* bpo-40147: Fix a compiler warning on Windows in Python/compile.c (GH-19389)Zackery Spytz2020-04-061-4/+5
* bpo-40147: Move the check for duplicate keywords to the compiler (GH-19289)Pablo Galindo2020-04-031-0/+29
* bpo-40067: Improve error messages for multiple star expressions in assignment...Furkan Önder2020-03-261-1/+1
* bpo-39882: Add _Py_FatalErrorFormat() function (GH-19157)Victor Stinner2020-03-251-16/+12
* Use calloc-based functions, not malloc. (GH-19152)Andy Lester2020-03-241-8/+4
* bpo-39562: Allow executing asynchronous comprehensions in the asyncio REPL (G...Batuhan Taşkaya2020-03-191-2/+5
* bpo-39220: Do not optimise annotation if 'from __future__ import annotations'...Pablo Galindo2020-03-181-1/+5
* bpo-39988: Remove ast.AugLoad and ast.AugStore node classes. (GH-19038)Serhiy Storchaka2020-03-171-100/+43
* bpo-39987: Simplify setting lineno in the compiler. (GH-19037)Serhiy Storchaka2020-03-171-50/+18
* bpo-39969: Remove ast.Param node class as is no longer used (GH-19020)Batuhan Taşkaya2020-03-151-18/+19
* bpo-39965: Correctly raise SyntaxError if await is used outside async functio...Pablo Galindo2020-03-151-4/+8
* closes bpo-39922: Remove unused args from four functions. (GH-18893)Andy Lester2020-03-101-17/+17
* bpo-34822: Simplify AST for subscription. (GH-9605)Serhiy Storchaka2020-03-101-157/+45
* bpo-39890: Don't mutate the AST when compiling starred assignments (GH-18833)Brandt Bucher2020-03-081-2/+4
* bpo-39639: Remove the AST "Suite" node and associated code (GH-18513)Batuhan Taşkaya2020-03-041-4/+0
* bpo-32856: Optimize the assignment idiom in comprehensions. (GH-16814)Serhiy Storchaka2020-02-121-18/+52
* bpo-39573: Use Py_TYPE() macro in Python and Include directories (GH-18391)Victor Stinner2020-02-071-1/+1
* bpo-39320: Handle unpacking of **values in compiler (GH-18141)Mark Shannon2020-01-271-32/+58
* bpo-39320: Handle unpacking of *values in compiler (GH-17984)Mark Shannon2020-01-231-96/+107
* Fix compiler warning on Windows (GH-18012)Ammar Askar2020-01-151-1/+1
* bpo-39156: Break up COMPARE_OP into four logically distinct opcodes. (GH-17754)Mark Shannon2020-01-141-27/+44
* Fix handling of line numbers around finally-blocks. (#17737)Mark Shannon2019-12-301-0/+4
* bpo-38328: Speed up the creation time of constant list and set display. (GH-1...Brandt Bucher2019-11-261-0/+22
* Produce cleaner bytecode for 'with' and 'async with' by generating separate c...Mark Shannon2019-11-211-213/+233
* bpo-38640: Allow break and continue in always false while loops (GH-16992)Pablo Galindo2019-10-301-0/+8
* Typo fix: "empy" should be "empty". (GH-16666)Hansraj Das2019-10-081-1/+1
* Revert "Fix depth-first-search computation in compile.c (GH-16042)" (GH-16050)T. Wouters2019-09-121-24/+30
* Fix depth-first-search computation in compile.c (GH-16042)Mark Shannon2019-09-121-30/+24
* bpo-34880: Add the LOAD_ASSERTION_ERROR opcode. (GH-15073)Zackery Spytz2019-08-251-7/+3
* bpo-37830: Fix compilation of break and continue in finally. (GH-15320)Serhiy Storchaka2019-08-241-11/+55
* Fix typos in comments, docs and test names (#15018)Min ho Kim2019-07-301-1/+1
* bpo-37500: Make sure dead code does not generate bytecode but also detect syn...Pablo Galindo2019-07-151-5/+64
* bpo-37221: Add PyCode_NewWithPosOnlyArgs to be used internally and set PyCode...Pablo Galindo2019-07-011-7/+5
* bpo-35224: Reverse evaluation order of key: value in dict comprehensions (GH-...Jörn Heissler2019-06-221-4/+4
* bpo-37253: Add _PyCompilerFlags_INIT macro (GH-14018)Victor Stinner2019-06-131-3/+1
* bpo-37122: Make co->co_argcount represent the total number of positonal argum...Pablo Galindo2019-06-011-4/+4
* bpo-37115: Support annotations in positional-only arguments (GH-13698)Pablo Galindo2019-05-311-0/+2
* bpo-37050: Remove expr_text from FormattedValue ast node, use Constant node i...Eric V. Smith2019-05-271-11/+0
* bpo-36763: Implement the PEP 587 (GH-13592)Victor Stinner2019-05-271-2/+2
* bpo-34616: Add PyCF_ALLOW_TOP_LEVEL_AWAIT to allow top-level await (GH-13148)Matthias Bussonnier2019-05-211-7/+21
* Annotate the unexplained assignment in exception unbinding (GH-11448)Chris Angelico2019-05-211-1/+1
* Fix couple of dead code paths (GH-7418)David Carlier2019-05-171-1/+0