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
/
ast.c
Commit message (
Expand
)
Author
Age
Files
Lines
*
Fix couple of dead code paths (GH-7418)
David Carlier
2019-05-17
1
-3/+0
*
bpo-36817: Do not decrement reference for expr_text on fstring = parsing fail...
Pablo Galindo
2019-05-12
1
-1/+0
*
bpo-36817: Fix reference leak for expr_text in f-string = parsing (GH-13249)
Pablo Galindo
2019-05-11
1
-2/+7
*
bpo-36817: Add f-string debugging using '='. (GH-13123)
Eric V. Smith
2019-05-08
1
-29/+83
*
bpo-36540: PEP 570 -- Implementation (GH-12701)
Pablo Galindo
2019-04-29
1
-18/+82
*
bpo-36495: Fix two out-of-bounds array reads (GH-12641)
Brad Larsen
2019-04-01
1
-2/+2
*
bpo-36332: Allow compile() to handle AST objects with assignment expressions ...
Pablo Galindo
2019-03-18
1
-3/+4
*
bpo-36280: Add Constant.kind field (GH-12295)
Guido van Rossum
2019-03-13
1
-7/+46
*
bpo-35975: Support parsing earlier minor versions of Python 3 (GH-12086)
Guido van Rossum
2019-03-07
1
-19/+81
*
bpo-36187: Remove NamedStore. (GH-12167)
Serhiy Storchaka
2019-03-05
1
-109/+90
*
bpo-36052: Raise a SyntaxError when assigning a value to __debug__ with := (G...
Stéphane Wirtel
2019-02-21
1
-1/+1
*
bpo-36049: Fix compiler warning in Python/ast.c (GH-11949)
Pablo Galindo
2019-02-19
1
-1/+1
*
bpo-35766 follow-up: Add an error check to new_type_comment() (#11766)
Guido van Rossum
2019-02-11
1
-0/+2
*
Fix compiler warning about non initialised variable (GH-11806)
Pablo Galindo
2019-02-10
1
-2/+2
*
Fix compiler warnings about end_col_offset and end_lineno (GH-11735)
Ivan Levkivskyi
2019-02-10
1
-5/+2
*
bpo-35879: Fix type comment leaks (GH-11728)
Guido van Rossum
2019-02-01
1
-3/+8
*
bpo-35766: Merge typed_ast back into CPython (GH-11645)
Guido van Rossum
2019-01-31
1
-58/+246
*
bpo-35814: Allow same r.h.s. in annotated assignments as in normal ones (GH-1...
Ivan Levkivskyi
2019-01-25
1
-1/+6
*
bpo-35224: PEP 572 Implementation (#10497)
Emily Morehouse
2019-01-24
1
-3/+97
*
bpo-33416: Add end positions to Python AST (GH-11605)
Ivan Levkivskyi
2019-01-22
1
-94/+252
*
bpo-16806: Fix `lineno` and `col_offset` for multi-line string tokens (GH-10021)
Anthony Sottile
2019-01-13
1
-3/+7
*
bpo-35494: Improve syntax error messages for unbalanced parentheses in f-stri...
Serhiy Storchaka
2019-01-12
1
-4/+27
*
bpo-35436: Add missing PyErr_NoMemory() calls and other minor bug fixes. (GH-...
Zackery Spytz
2018-12-07
1
-1/+6
*
bpo-31241: Fix AST node position for list and generator comprehensions. (GH-1...
Serhiy Storchaka
2018-11-27
1
-17/+32
*
bpo-18407: ast.c uses Py_ssize_t for asdl_seq_LEN() iterator (GH-10655)
Victor Stinner
2018-11-22
1
-9/+9
*
bpo-35169: Improve error messages for forbidden assignments. (GH-10342)
Serhiy Storchaka
2018-11-20
1
-60/+46
*
bpo-34876: Change the lineno of the AST for decorated function and class. (GH...
Serhiy Storchaka
2018-10-30
1
-6/+0
*
bpo-32912: Replace a DeprecationWarning with a SyntaxWarning (GH-9652)
Serhiy Storchaka
2018-10-19
1
-3/+3
*
bpo-32892: Use ast.Constant instead of specific constant AST types. (GH-9445)
Serhiy Storchaka
2018-09-27
1
-54/+28
*
bpo-34683: Make SyntaxError column offsets consistently 1-indexed (gh-9338)
Ammar Askar
2018-09-24
1
-1/+1
*
closes bpo-34641: Further restrict the LHS of keyword argument function call ...
Benjamin Peterson
2018-09-13
1
-14/+41
*
Make sure the line comes from the same node as the col offset. (GH-9189)
Benjamin Peterson
2018-09-11
1
-3/+3
*
closes bpo-31902: Fix the col_offset attribute for ast.Async* nodes to point ...
guoci
2018-09-11
1
-18/+21
*
bpo-34457: Python/ast.c: Add missing NULL check to alias_for_import_name(). (...
Alexey Izbyshev
2018-08-22
1
-0/+2
*
bpo-33691: Add _PyAST_GetDocString(). (GH-7236)
Serhiy Storchaka
2018-05-30
1
-0/+20
*
bpo-32911: Revert bpo-29463. (GH-7121) (GH-7197)
Serhiy Storchaka
2018-05-29
1
-63/+24
*
fix error message in ast.c (#6776)
Jelle Zijlstra
2018-05-13
1
-1/+1
*
bpo-30465: Fix C downcast warning on Windows in ast.c (#6593)
Victor Stinner
2018-04-30
1
-1/+1
*
Don't hide unexpected errors in PyErr_WarnExplicitObject(). (#4585)
Serhiy Storchaka
2017-12-01
1
-9/+10
*
bpo-32023: Disallow genexprs without parenthesis in class definitions. (#4400)
Serhiy Storchaka
2017-11-15
1
-5/+10
*
bpo-32012: Disallow trailing comma after genexpr without parenthesis. (#4382)
Serhiy Storchaka
2017-11-15
1
-10/+9
*
Fix miscellaneous typos (#4275)
luzpaz
2017-11-05
1
-1/+1
*
bpo-31825: Fixed OverflowError in the 'unicode-escape' codec (#4058)
Serhiy Storchaka
2017-10-20
1
-1/+1
*
bpo-30406: Make async and await proper keywords (#1669)
Jelle Zijlstra
2017-10-06
1
-40/+35
*
bpo-31592: Fix an assertion failure in Python parser in case of a bad unicode...
Oren Milman
2017-09-30
1
-12/+16
*
bpo-31338 (#3374)
Barry Warsaw
2017-09-15
1
-4/+2
*
bpo-30465: Fix lineno and col_offset in fstring AST nodes (#1800)
Łukasz Langa
2017-09-07
1
-5/+67
*
bpo-30923: Silence fall-through warnings included in -Wextra since gcc-7.0. (...
Stefan Krah
2017-08-21
1
-0/+3
*
bpo-30682: Removed a too-strict assertion that failed for certain f-strings. ...
ericvsmith
2017-06-16
1
-2/+2
*
bpo-30529: Fix errors for invalid whitespaces in f-string subexpressions. (#1...
Serhiy Storchaka
2017-06-08
1
-24/+7
[next]