Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1 | .. _custominterp: |
| 2 | |
| 3 | ************************** |
| 4 | Custom Python Interpreters |
| 5 | ************************** |
| 6 | |
| 7 | The modules described in this chapter allow writing interfaces similar to |
| 8 | Python's interactive interpreter. If you want a Python interpreter that |
| 9 | supports some special feature in addition to the Python language, you should |
| 10 | look at the :mod:`code` module. (The :mod:`codeop` module is lower-level, used |
| 11 | to support compiling a possibly-incomplete chunk of Python code.) |
| 12 | |
| 13 | The full list of modules described in this chapter is: |
| 14 | |
| 15 | |
| 16 | .. toctree:: |
| 17 | |
| 18 | code.rst |
| 19 | codeop.rst |