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