You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
778 B

4 years ago
  1. Metadata-Version: 2.1
  2. Name: gast
  3. Version: 0.2.0
  4. Summary: Python AST that abstracts the underlying Python version
  5. Home-page: UNKNOWN
  6. Author: serge-sans-paille
  7. Author-email: serge.guelton@telecom-bretagne.eu
  8. License: BSD 3-Clause
  9. Platform: UNKNOWN
  10. Classifier: Development Status :: 4 - Beta
  11. Classifier: Environment :: Console
  12. Classifier: Intended Audience :: Developers
  13. Classifier: License :: OSI Approved :: BSD License
  14. Classifier: Natural Language :: English
  15. Classifier: Programming Language :: Python :: 2
  16. Classifier: Programming Language :: Python :: 3
  17. A generic AST to represent Python2 and Python3's Abstract Syntax Tree(AST).
  18. GAST provides a compatibility layer between the AST of various Python versions,
  19. as produced by ``ast.parse`` from the standard ``ast`` module.