blob: eee5ef7855268b1180847daf8c9606da0e63589f [file] [log] [blame]
Georg Brandl8ec7f652007-08-15 14:28:01 +00001
2.. _language:
3
4************************
5Python Language Services
6************************
7
8Python provides a number of modules to assist in working with the Python
9language. These modules support tokenizing, parsing, syntax analysis, bytecode
10disassembly, and various other facilities.
11
12These modules include:
13
14
15.. toctree::
16
17 parser.rst
Georg Brandl8509db52008-06-10 07:45:28 +000018 ast.rst
Benjamin Peterson1e296cc2008-08-16 21:04:16 +000019 symtable.rst
Georg Brandl8ec7f652007-08-15 14:28:01 +000020 symbol.rst
21 token.rst
22 keyword.rst
23 tokenize.rst
24 tabnanny.rst
25 pyclbr.rst
26 py_compile.rst
27 compileall.rst
28 dis.rst
29 pickletools.rst