Commit 51a840a
committed
transformer, ast, syntax: Remove deprecated modules.
These modules were concerned with converting Python parse tree into AST
in Python versions 1.5.x - early 2.x. Since then, the "ast" module, with
elaborated API, was promoted to the top-level module in Python stdlib.
Previous changes in this repository were concerned with porting other
modules (symbols, pycodegen, etc.) from those historical modules to the
modern "ast" module.
Thus, these modules are unused and removed to clean up the package and ease
maintenance. Note that the topic of parsing Python source code into AST
using pure-Python module(s) is definitely interesting, but better be pursued
via separate project(s). This project has well-defined scope - compile a
standard Python AST into bytecode and code objects.1 parent 1145ff3 commit 51a840a
File tree
5 files changed
+2
-2972
lines changed- compiler
5 files changed
+2
-2972
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1 | | - | |
| 1 | + | |
2 | 2 | | |
3 | 3 | | |
4 | 4 | | |
5 | 5 | | |
6 | | - | |
7 | | - | |
8 | | - | |
9 | | - | |
10 | | - | |
11 | | - | |
12 | | - | |
13 | 6 | | |
14 | 7 | | |
15 | 8 | | |
| |||
21 | 14 | | |
22 | 15 | | |
23 | 16 | | |
24 | | - | |
25 | | - | |
26 | | - | |
27 | | - | |
28 | | - | |
29 | | - | |
30 | 17 | | |
31 | 18 | | |
0 commit comments