COMMITS
/ Python/compile.c November 26, 2019
B
bpo-38328: Speed up the creation time of constant list and set display. (GH-17114)
Brandt Bucher committed
November 21, 2019
October 30, 2019
P
bpo-38640: Allow break and continue in always false while loops (GH-16992)
Pablo Galindo committed
October 9, 2019
H
Typo fix: "empy" should be "empty". (GH-16666)
Hansraj Das committed
September 12, 2019
T
Revert "Fix depth-first-search computation in compile.c (GH-16042)" (GH-16050)
T. Wouters committed
M
Fix depth-first-search computation in compile.c (GH-16042)
Mark Shannon committed
August 25, 2019
Z
bpo-34880: Add the LOAD_ASSERTION_ERROR opcode. (GH-15073)
Zackery Spytz committed
August 24, 2019
S
bpo-37830: Fix compilation of break and continue in finally. (GH-15320)
Serhiy Storchaka committed
July 30, 2019
M
Fix typos in comments, docs and test names (#15018)
Min ho Kim committed
July 15, 2019
P
July 1, 2019
June 22, 2019
J
bpo-35224: Reverse evaluation order of key: value in dict comprehensions (GH-14139)
Jörn Heissler committed
June 13, 2019
V
bpo-37253: Add _PyCompilerFlags_INIT macro (GH-14018)
Victor Stinner committed
June 1, 2019
May 31, 2019
P
bpo-37115: Support annotations in positional-only arguments (GH-13698)
Pablo Galindo committed
May 27, 2019
E
bpo-37050: Remove expr_text from FormattedValue ast node, use Constant node instead (GH-13597)
Eric V. Smith committed
V
bpo-36763: Implement the PEP 587 (GH-13592)
Victor Stinner committed
May 21, 2019
M
bpo-34616: Add PyCF_ALLOW_TOP_LEVEL_AWAIT to allow top-level await (GH-13148)
Matthias Bussonnier committed
C
Annotate the unexplained assignment in exception unbinding (GH-11448)
Chris Angelico committed
May 17, 2019
D
Fix couple of dead code paths (GH-7418)
David Carlier committed
P
bpo-1875: Raise SyntaxError in invalid blocks that will be optimised away (GH-13332)
Pablo Galindo committed
May 14, 2019
V
bpo-36900: Replace global conf vars with config (GH-13299)
Victor Stinner committed
May 8, 2019
E
bpo-36817: Add f-string debugging using '='. (GH-13123)
Eric V. Smith committed
April 29, 2019
P
bpo-36540: PEP 570 -- Implementation (GH-12701)
Pablo Galindo committed
April 9, 2019
S
Fix typos in compile.c comments (GH-12752)
Simeon committed
March 22, 2019
Z
bpo-35284: Fix the error handling in the compiler's compiler_call(). (GH-10625)
Zackery Spytz committed
March 20, 2019
Z
bpo-36374: Fix a possible null pointer dereference (GH-12449)
Zackery Spytz committed
March 7, 2019
G
bpo-35975: Support parsing earlier minor versions of Python 3 (GH-12086)
Guido van Rossum committed
March 5, 2019
S
bpo-36187: Remove NamedStore. (GH-12167)
Serhiy Storchaka committed
February 16, 2019
S
bpo-35798: Fix duplicate SyntaxWarning: "is" with a literal. (GH-11639)
Serhiy Storchaka committed
S
bpo-15248: Emit a compiler warning when missed a comma before tuple or list. (GH-11757)
Serhiy Storchaka committed
January 24, 2019
E
bpo-35224: PEP 572 Implementation (#10497)
Emily Morehouse committed
January 22, 2019
I
bpo-33416: Add end positions to Python AST (GH-11605)
Ivan Levkivskyi committed
January 18, 2019
S
bpo-34850: Emit a warning for "is" and "is not" with a literal. (GH-9642)
Serhiy Storchaka committed
November 28, 2018
I
bpo-34100: compile: Re-enable frozenset merging (GH-10760)
INADA Naoki committed
November 27, 2018
V
bpo-34100: Partially revert merge_consts_recursive() (GH-10743)
Victor Stinner committed
November 26, 2018
I
bpo-34100: Merge constants recursively (GH-8341)
INADA Naoki committed
November 11, 2018
V
bpo-35177: Add dependencies between header files (GH-10361)
Victor Stinner committed
October 30, 2018
S
bpo-34876: Change the lineno of the AST for decorated function and class. (GH-9731)
Serhiy Storchaka committed
October 21, 2018
S
bpo-35029: Replace the SyntaxWarning exception with a SyntaxError. (GH-9999)
Serhiy Storchaka committed
October 12, 2018
Z
Fix an incorrect check in compiler_try_except(). (GH-9810)
Zackery Spytz committed
September 27, 2018
S
bpo-32892: Use ast.Constant instead of specific constant AST types. (GH-9445)
Serhiy Storchaka committed
September 24, 2018
A
bpo-34683: Make SyntaxError column offsets consistently 1-indexed (gh-9338)
Ammar Askar committed
September 18, 2018
S
bpo-32455: Add jump parameter to dis.stack_effect(). (GH-6610)
Serhiy Storchaka committed
September 17, 2018
S
bpo-12458: Fix line numbers for multiline expressions. (GH-8774)
Serhiy Storchaka committed
September 12, 2018
B
closes bpo-34646: Remove PyAPI_* macros from declarations. (GH-9218)
Benjamin Peterson committed
May 30, 2018
S
bpo-33691: Add _PyAST_GetDocString(). (GH-7236)
Serhiy Storchaka committed
May 29, 2018
S
bpo-32911: Revert bpo-29463. (GH-7121) (GH-7197)
Serhiy Storchaka committed
May 17, 2018
S
bpo-33475: Fix and improve converting annotations to strings. (GH-6774)
Serhiy Storchaka committed
April 27, 2018
Z
bpo-33363: raise SyntaxError for async for/with outside async functions (#6616)
Zsolt Dollenstein committed