summaryrefslogtreecommitdiffstats
path: root/Lib/ast.py
Commit message (Expand)AuthorAgeFilesLines
* gh-116126: Implement PEP 696 (#116129)Jelle Zijlstra2024-05-031-0/+9
* gh-116023: Add `show_empty=False` to `ast.dump` (#116037)Nikita Sobolev2024-04-241-1/+20
* gh-112364: Correct unparsing of backslashes and quotes in ast.unparse (#115696)Frank Hoffmann2024-02-211-7/+8
* Clean up backslash avoiding code in ast, fix typo (#113605)Shantanu2024-01-161-8/+5
* gh-58032: Do not use argparse.FileType in module CLIs and scripts (GH-113649)Serhiy Storchaka2024-01-101-5/+9
* gh-110259: Fix f-strings with multiline expressions and format specs (#110271)Pablo Galindo Salgado2023-10-051-3/+8
* gh-108843: fix ast.unparse for f-string with many quotes (#108981)Shantanu2023-09-181-1/+20
* gh-108469: Update ast.unparse for unescaped quote support from PEP701 [3.12] ...Anthony Shaw2023-09-051-21/+10
* gh-108113: Make it possible to create an optimized AST (#108154)Irit Katriel2023-08-211-2/+4
* gh-104799: PEP 695 backward compatibility for ast.unparse (#105846)Jelle Zijlstra2023-06-161-2/+4
* gh-104656: Rename typeparams AST node to type_params (#104657)Jelle Zijlstra2023-05-221-6/+6
* gh-103763: Implement PEP 695 (#103764)Jelle Zijlstra2023-05-161-0/+26
* gh-90953: Emit deprecation warnings for `ast` features deprecated in Python 3...Alex Waygood2023-05-061-8/+74
* gh-103285: Rewrite _splitlines_no_ff to improve performance (#103307)Tian Gao2023-04-241-18/+8
* gh-99341: Cover type ignore nodes when incrementing line numbers (GH-99422)Batuhan Taskaya2022-11-221-0/+6
* gh-95588: Drop the safety claim from `ast.literal_eval` docs. (#95919)Gregory P. Smith2022-10-021-1/+3
* gh-92986: Fix ast.unparse when ImportFrom.level is None (#92992)Shantanu2022-09-051-1/+1
* ast.parse: check `feature_version` common case first (GH-94640)Anthony Sottile2022-08-291-3/+3
* gh-95066: ast: Replace assert with ValueError (GH-95072)Shantanu2022-07-261-1/+2
* gh-92671: Don't omit parentheses when unparsing empty tuples (GH-92673)Batuhan Taskaya2022-05-161-1/+5
* bpo-43224: Implement PEP 646 grammar changes (GH-31018)Matthew Rahtz2022-03-261-6/+3
* bpo-45292: [PEP-654] add except* (GH-29581)Irit Katriel2021-12-141-2/+19
* Fix typos in multiple files (GH-26689)Binbin2021-06-131-1/+1
* bpo-44142: drop redundant parantheses when unparsing tuples as assignment tar...Batuhan Taskaya2021-05-161-3/+6
* bpo-44081: improve ast.unparse() for lambdas with no parameters (GH-26000)Batuhan Taskaya2021-05-151-5/+8
* bpo-43417: Better buffer handling for ast.unparse (GH-24772)Batuhan Taskaya2021-05-081-57/+59
* Fix typo in ast.py (GH-25740)Ikko Ashimine2021-05-041-2/+2
* bpo-43892: Make match patterns explicit in the AST (GH-25585)Nick Coghlan2021-04-291-4/+75
* bpo-38659: [Enum] add _simple_enum decorator (GH-25497)Ethan Furman2021-04-211-2/+3
* Revert "bpo-38659: [Enum] add _simple_enum decorator (GH-25285)" (GH-25476)Ethan Furman2021-04-201-3/+2
* bpo-38659: [Enum] add _simple_enum decorator (GH-25285)Ethan Furman2021-04-201-2/+3
* bpo-43521: Allow ast.unparse with empty sets and NaN (GH-24897)Kodi Arfer2021-03-181-6/+14
* bpo-42128: Structural Pattern Matching (PEP 634) (GH-22917)Brandt Bucher2021-02-261-0/+27
* bpo-28964: add line number of node (if available) to ast.literal_eval error m...Irit Katriel2020-12-251-1/+4
* bpo-28002: Roundtrip f-strings with ast.unparse better (#19612)Shantanu2020-11-201-24/+86
* bpo-41887: omit leading spaces/tabs on ast.literal_eval (#22469)Batuhan Taskaya2020-10-041-1/+1
* bpo-41631: _ast module uses again a global state (#21961)Victor Stinner2020-09-151-15/+22
* bpo-40726: handle uninitalized end_lineno on ast.increment_lineno (GH-20312)Batuhan Taskaya2020-08-051-3/+10
* bpo-36290: Fix keytword collision handling in AST node constructors (GH-12382)RĂ©mi Lapeyre2020-05-241-0/+7
* bpo-38870: Don't omit parenthesis when unparsing a slice in ast.unparseBatuhan Taskaya2020-05-181-1/+11
* bpo-38870: correctly escape unprintable characters on ast.unparse (GH-20166)CyberSaxosTiGER2020-05-181-3/+11
* bpo-40662: Fixed ast.get_source_segment for ast nodes that have incomplete lo...Irit Katriel2020-05-181-0/+2
* bpo-38870: Implement round tripping support for typed AST in ast.unparse (GH-...Batuhan Taskaya2020-05-161-6/+23
* bpo-38870: Correctly handle empty docstrings in ast.unparse (GH-18768)Batuhan Taskaya2020-05-161-5/+8
* bpo-38870: Don't put unnecessary parentheses on class declarations in ast.par...Batuhan Taskaya2020-05-161-1/+1
* bpo-38870: Do not separate factor prefixes in ast.unparse (GH-20133)Batuhan Taskaya2020-05-161-3/+6
* bpo-40355: Improve error messages in ast.literal_eval with malformed Dict nod...Curtis Bucher2020-05-051-4/+7
* bpo-38870: Don't start generated output with newlines in ast.unparse (GH-19636)Batuhan Taskaya2020-05-031-4/+10
* Fix typo in exception thrown by ast.unparse (GH-19534)Shantanu2020-04-161-1/+1
* bpo-39999: Improve compatibility of the ast module. (GH-19056)Serhiy Storchaka2020-03-221-2/+24