Staging
v0.5.1
https://github.com/python/cpython
Revision 9bdc40ee3e0d886fb62b5334e8a88c1fe9460ba0 authored by Pablo Galindo on 30 November 2020, 19:42:38 UTC, committed by GitHub on 30 November 2020, 19:42:38 UTC
1 parent bcc9579
Raw File
Tip revision: 9bdc40ee3e0d886fb62b5334e8a88c1fe9460ba0 authored by Pablo Galindo on 30 November 2020, 19:42:38 UTC
Refactor the grammar to match the language specification docs (GH-23574)
Tip revision: 9bdc40e
custominterp.rst
.. _custominterp:

**************************
Custom Python Interpreters
**************************

The modules described in this chapter allow writing interfaces similar to
Python's interactive interpreter.  If you want a Python interpreter that
supports some special feature in addition to the Python language, you should
look at the :mod:`code` module.  (The :mod:`codeop` module is lower-level, used
to support compiling a possibly-incomplete chunk of Python code.)

The full list of modules described in this chapter is:


.. toctree::

   code.rst
   codeop.rst
back to top