Staging
v0.8.1
Revision 5fbe5e161c969bc8a0d44a301152f8bf5afe0fc7 authored by Miss Islington (bot) on 03 November 2017, 05:36:45 UTC, committed by INADA Naoki on 03 November 2017, 05:36:45 UTC
netrc file format doesn't support quotes and escapes.

See https://linux.die.net/man/5/netrc
(cherry picked from commit b24cd055ecb3eea9a15405a6ca72dafc739e6531)
1 parent 7891556
Raw File
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