aboutsummaryrefslogtreecommitdiff
path: root/python/python3-asttokens/README
diff options
context:
space:
mode:
authorTim Dickson <dickson.tim@googlemail.com>2023-10-21 08:52:05 +0900
committerWilly Sudiarto Raharjo <willysr@slackbuilds.org>2023-10-21 17:20:13 +0700
commitb3b0eb0c9fc9b21e6ca9c774d39c6500553edfa3 (patch)
tree636c9ce5f13f65251fd66ef640b20c96f1636a7f /python/python3-asttokens/README
parente0091fdf5064c66e54c253051ba52cfba914f235 (diff)
python/python3-asttokens: Added (python module).
Signed-off-by: Andrew Clemons <andrew.clemons@gmail.com> Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'python/python3-asttokens/README')
-rw-r--r--python/python3-asttokens/README12
1 files changed, 12 insertions, 0 deletions
diff --git a/python/python3-asttokens/README b/python/python3-asttokens/README
new file mode 100644
index 0000000000..107d2fe1ce
--- /dev/null
+++ b/python/python3-asttokens/README
@@ -0,0 +1,12 @@
+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 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.