mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-16 19:50:19 +01:00
1d9e055fed
Signed-off-by: Dave Woodfall <dave@slackbuilds.org> Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
12 lines
538 B
Text
12 lines
538 B
Text
this module annotates Python abstact syntax trees (ASTs) with the
|
|
positions of tokens and text in the source code that generated them
|
|
|
|
It makes it possible for tools that work with logical AST nodes to find
|
|
the particular text that resulted in those nodes, for example for
|
|
automated refactoring or highlighting.
|
|
|
|
It works with Python2 and Python3 and can annotate both trees built by
|
|
ast, and those built by astroid.
|
|
|
|
This (source) is downloaded from pypi.org/projects/asttokens as the
|
|
github site may not have a complete sourcecode zip.
|