Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1 | |
| 2 | .. _language: |
| 3 | |
| 4 | ************************ |
| 5 | Python Language Services |
| 6 | ************************ |
| 7 | |
| 8 | Python provides a number of modules to assist in working with the Python |
| 9 | language. These modules support tokenizing, parsing, syntax analysis, bytecode |
| 10 | disassembly, and various other facilities. |
| 11 | |
| 12 | These modules include: |
| 13 | |
| 14 | |
| 15 | .. toctree:: |
| 16 | |
| 17 | parser.rst |
Georg Brandl | 0c77a82 | 2008-06-10 16:37:50 +0000 | [diff] [blame] | 18 | ast.rst |
Benjamin Peterson | 55e00f2 | 2008-08-17 18:02:44 +0000 | [diff] [blame] | 19 | symtable.rst |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 20 | 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 |
| 30 | distutils.rst |