- b7e9525 bpo-36287: Make ast.dump() not output optional fields and attributes with default values. (GH-18843) by Serhiy Storchaka · 5 years ago
- 397b96f bpo-38870: Implement a precedence algorithm in ast.unparse (GH-17377) by Batuhan Taşkaya · 5 years ago
- 6e619c4 bpo-39474: Fix AST pos for expressions like (a)(b), (a)[b] and (a).b. (GH-18477) by Serhiy Storchaka · 5 years ago
- d2e1098 bpo-39579: Fix Attribute end_col_offset to point at the current node (GH-18405) by Lysandros Nikolaou · 6 years ago
- 850a885 bpo-39235: Check end_lineno and end_col_offset of AST nodes. (GH-17926) by Serhiy Storchaka · 6 years ago
- 4fcf5c1 bpo-39158: ast.literal_eval() doesn't support empty sets (GH-17742) by Raymond Hettinger · 6 years ago
- 50d4f12 bpo-39080: Starred Expression's column offset fix when inside a CALL (GH-17645) by Lysandros Nikolaou · 6 years ago
- 5936a4c Fix elif start column offset when there is an else following (GH-17596) by Lysandros Nikolaou · 6 years ago
- 025a602 bpo-39031: Include elif keyword when producing lineno/col-offset info for if_stmt (GH-17582) by Lysandros Nikolaou · 6 years ago
- 26ae9f6 bpo-38535: Fix positions for AST nodes for calls without arguments in decorators. (GH-16861) by Serhiy Storchaka · 6 years ago
- 850573b bpo-37995: Add an option to ast.dump() to produce a multiline output. (GH-15631) by Serhiy Storchaka · 6 years ago
- e64f948 bpo-37950: Fix ast.dump() when call with incompletely initialized node. (GH-15510) by Serhiy Storchaka · 6 years ago
- c3ea41e bpo-36917: Add default implementation of ast.NodeVisitor.visit_Constant(). (GH-15490) by Serhiy Storchaka · 6 years ago
- c4cacc8 Fix typos in comments, docs and test names (#15018) by Min ho Kim · 6 years ago
- cd6e83b bpo-37593: Swap the positions of posonlyargs and args in the constructor of ast.parameters nodes (GH-14778) by Pablo Galindo · 6 years ago
- 430a9f4 bpo-18374: fix tests to check the correct thing about line numbers (GH-14659) by Carl Friedrich Bolz-Tereick · 6 years ago
- 110a47c bpo-18374: fix wrong col_offset of some ast.BinOp instances (GH-14607) by Carl Friedrich Bolz-Tereick · 6 years ago
- 2f58a84 bpo-37112: Allow compile to work on AST with positional only arguments with defaults (GH-13697) by Pablo Galindo · 6 years ago
- 8c77b8c bpo-36540: PEP 570 -- Implementation (GH-12701) by Pablo Galindo · 6 years ago
- 0c9258a bpo-36332: Allow compile() to handle AST objects with assignment expressions (GH-12398) by Pablo Galindo · 6 years ago
- 10f8ce6 bpo-36280: Add Constant.kind field (GH-12295) by Guido van Rossum · 6 years ago
- dcfcd14 bpo-35766: Merge typed_ast back into CPython (GH-11645) by Guido van Rossum · 7 years ago
- 9932a22 bpo-33416: Add end positions to Python AST (GH-11605) by Ivan Levkivskyi · 7 years ago
- 7417622 bpo-35733: Make isinstance(ast.Constant(boolean), ast.Num) be false. (GH-11547) by Anthony Sottile · 7 years ago
- 3bcbedc bpo-34850: Emit a warning for "is" and "is not" with a literal. (GH-9642) by Serhiy Storchaka · 7 years ago
- 995d9b9 bpo-16806: Fix `lineno` and `col_offset` for multi-line string tokens (GH-10021) by Anthony Sottile · 7 years ago
- b619b09 bpo-31241: Fix AST node position for list and generator comprehensions. (GH-10633) by Serhiy Storchaka · 7 years ago
- 95b6acf bpo-34876: Change the lineno of the AST for decorated function and class. (GH-9731) by Serhiy Storchaka · 7 years ago
- 6015cc5 bpo-32892: Support subclasses of base types in isinstance checks for AST constants. (GH-9934) by Serhiy Storchaka · 7 years ago
- 3f22811 bpo-32892: Use ast.Constant instead of specific constant AST types. (GH-9445) by Serhiy Storchaka · 7 years ago
- 90fc898 closes bpo-31902: Fix the col_offset attribute for ast.Async* nodes to point to the "async" keyword. (GH-4175) by guoci · 7 years ago
- 08f127a bpo-33851: Fix ast.get_docstring() for a node that lacks a docstring. (GH-7682) by Serhiy Storchaka · 7 years ago
- 73cbe7a bpo-32911: Revert bpo-29463. (GH-7121) (GH-7197) by Serhiy Storchaka · 7 years ago
- d8ac4d1 bpo-31778: Make ast.literal_eval() more strict. (#4035) by Serhiy Storchaka · 8 years ago
- 7dc46d8 bpo-31592: Fix an assertion failure in Python parser in case of a bad unicodedata.normalize(). (#3767) by Oren Milman · 8 years ago
- 41cea70 bpo-29637: clean docstring only if not None (GH-267) by Matthias Bussonnier · 8 years ago
- 4c78c52 bpo-29622: Make AST constructor to accept less than enough number of positional arguments (GH-249) by INADA Naoki · 8 years ago
- cb41b27 bpo-29463: Add docstring field to some AST nodes. (#46) by INADA Naoki · 8 years ago
- 52c4e7c Issue #28008: Implement PEP 530 -- asynchronous comprehensions. by Yury Selivanov · 9 years ago
- 7de2840 Issue #27352: Fixed an error message in a test. by Serhiy Storchaka · 9 years ago
- 0a5bd51 Issue #13436: Add a test to make sure that ast.ImportFrom(level=None) works by Berker Peksag · 9 years ago
- 15a3095 compiler: don't emit SyntaxWarning on const stmt by Victor Stinner · 10 years ago
- a272409 compiler now ignores constant statements by Victor Stinner · 10 years ago
- f089196 Simplify main() of test_ast by Victor Stinner · 10 years ago
- be59d14 Issue #26146: enhance ast.Constant error message by Victor Stinner · 10 years ago
- f2c1aa1 Add ast.Constant by Victor Stinner · 10 years ago
- 58b5395 make opening brace of container literals and comprehensions correspond to the line number and col offset of the AST node (closes #25131) by Benjamin Peterson · 10 years ago
- b3d5313 Issue #24975: Fix AST compilation for PEP 448 syntax. by Yury Selivanov · 10 years ago
- 2f07a66 Issue #24688: ast.get_docstring() for 'async def' functions. by Yury Selivanov · 10 years ago
- 7544508 PEP 0492 -- Coroutines with async and await syntax. Issue #24017. by Yury Selivanov · 10 years ago
- 025e9eb PEP 448: additional unpacking generalizations (closes #2292) by Benjamin Peterson · 10 years ago
- 7a66fc2 revert lineno and col_offset changes from #16795 (closes #21295) by Benjamin Peterson · 11 years ago
- e84fde9 set line and column numbers for keyword-only arg nodes (closes #20619) by Benjamin Peterson · 11 years ago
- a7e7497 #18466: merge with 3.3. by Ezio Melotti · 12 years ago
- 85a8629 #18466: fix more typos. Patch by Févry Thibault. by Ezio Melotti · 12 years ago
- 3e9a9ae Update various test modules to use unittest.main() for test discovery by Brett Cannon · 12 years ago
- d502a07 test_ast: pass the filename to ast.parse() by Victor Stinner · 12 years ago
- cda75be unify some ast.argument's attrs; change Attribute column offset (closes #16795) by Benjamin Peterson · 12 years ago
- 442f209 create NameConstant AST class for None, True, and False literals (closes #16619) by Benjamin Peterson · 13 years ago
- ded35ae Issue #16546: make ast.YieldFrom argument mandatory. by Mark Dickinson · 13 years ago
- bd0df50 get rid of ast_error_finish by passing the compiling struct to ast_error by Benjamin Peterson · 13 years ago
- c7f447c merge 3.2 (#15846) by Benjamin Peterson · 13 years ago
- 2e2c903 prevert ast errors from being normalized before ast_error_finish is called (closes #15846) by Benjamin Peterson · 13 years ago
- 9ed3743 test AST base type garbage collection by Benjamin Peterson · 13 years ago
- 98ba753 merge 3.2 (#14378) by Benjamin Peterson · 13 years ago
- a4e4e35 check by equality for __future__ not identity (closes #14378) by Benjamin Peterson · 13 years ago
- 7e0dbfb give the AST class a __dict__ by Benjamin Peterson · 13 years ago
- 61a4161 merge 3.2 by Benjamin Peterson · 13 years ago
- ef87f06 allow AST objects to be like its subclasses by Benjamin Peterson · 13 years ago
- 09b4bd0 merge 3.2 by Benjamin Peterson · 13 years ago
- d279e28 every other ast object has a dict, so I think AST should, too by Benjamin Peterson · 13 years ago
- 527c622 make YieldFrom its own distinct from Yield (closes #13780) by Benjamin Peterson · 14 years ago
- 1f7ce62 Implement PEP 380 - 'yield from' (closes #11682) by Nick Coghlan · 14 years ago
- 942d5ba Merge branch 3.2 by Amaury Forgeot d'Arc · 14 years ago
- 58e8761 Issue #13436: Fix a bogus error message when an AST object was passed by Amaury Forgeot d'Arc · 14 years ago
- e41f0de Merge 3.2, fix typos. by Florent Xicluna · 14 years ago
- 992d9e0 Fix few typos. by Florent Xicluna · 14 years ago
- 71ce897 fix indentation by Benjamin Peterson · 14 years ago
- 832bfe2 add a AST validator (closes #12575) by Benjamin Peterson · 14 years ago
- 86f088e merge 3.2 by Benjamin Peterson · 14 years ago
- 2193d2b type check AST strings and identifiers by Benjamin Peterson · 14 years ago
- b37db00 merge 3.2 by Benjamin Peterson · 14 years ago
- 68b543a fix ws by Benjamin Peterson · 14 years ago
- 9df8874 merge 3.2 (#11302) by Benjamin Peterson · 14 years ago
- 6ccfe85 add more ast tests (closes #11302) by Benjamin Peterson · 14 years ago
- 43af12b unify TryExcept and TryFinally (closes #12199) by Benjamin Peterson · 14 years ago
- aeabd5f add some with syntax examples by Benjamin Peterson · 14 years ago
- efb6902 Add missing line. by Georg Brandl · 15 years ago
- 619e7ba #10869: do not visit root node twice in ast.increment_lineno(). by Georg Brandl · 15 years ago
- b3aedd4 #9424: Replace deprecated assert* methods in the Python test suite. by Ezio Melotti · 15 years ago
- 5b06681 use %R format code; fixes invalid dereferencing #10391 by Benjamin Peterson · 15 years ago
- bc95973 Fix handling on negative numbers in ast.literal_eval(). by Raymond Hettinger · 15 years ago
- 5ef96e5 allow byte literals by Benjamin Peterson · 15 years ago
- 3e74289 test for set literals by Benjamin Peterson · 15 years ago
- a0dfa82 Merged revisions 75149,75260-75263,75265-75267,75292,75300,75376,75405,75429-75433,75437,75445,75501,75551,75572,75589-75591,75657,75742,75868,75952-75957,76057,76105,76139,76143,76162,76223 via svnmerge from by Benjamin Peterson · 16 years ago
- 2e4b0e1 Merged revisions 74464 via svnmerge from by Benjamin Peterson · 16 years ago
- c9c0f20 convert old fail* assertions to assert* by Benjamin Peterson · 16 years ago
- 78565b2 Merged revisions 73376,73393,73398,73400,73404-73405,73409,73419-73421,73432,73457,73460,73485-73486,73488-73489,73501-73502,73513-73514 via svnmerge from by Benjamin Peterson · 16 years ago
- 058e31e Merged revisions 68450,68480-68481,68493,68495,68501,68512,68514-68515,68534-68536,68552,68563,68570-68572,68575,68582,68596,68623-68624,68628 via svnmerge from by Benjamin Peterson · 17 years ago
- 0c77a82 Merged revisions 63829-63831,63858,63865,63879,63882,63948,63970-63972,63976,63989,64014-64015,64021-64022,64063-64065,64067 via svnmerge from by Georg Brandl · 17 years ago