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