blob: 1eac32e459021666bb6c1fe6f009c3a95b4d79ca [file] [log] [blame]
Georg Brandl116aa622007-08-15 14:28:22 +00001.. _language:
2
3************************
4Python Language Services
5************************
6
7Python provides a number of modules to assist in working with the Python
8language. These modules support tokenizing, parsing, syntax analysis, bytecode
9disassembly, and various other facilities.
10
11These modules include:
12
13
14.. toctree::
15
16 parser.rst
Georg Brandl0c77a822008-06-10 16:37:50 +000017 ast.rst
Benjamin Peterson55e00f22008-08-17 18:02:44 +000018 symtable.rst
Georg Brandl116aa622007-08-15 14:28:22 +000019 symbol.rst
20 token.rst
21 keyword.rst
22 tokenize.rst
23 tabnanny.rst
24 pyclbr.rst
25 py_compile.rst
26 compileall.rst
27 dis.rst
28 pickletools.rst