diff options
author | Eli Bendersky <eliben@gmail.com> | 2012-02-27 17:18:35 (GMT) |
---|---|---|
committer | Eli Bendersky <eliben@gmail.com> | 2012-02-27 17:18:35 (GMT) |
commit | 49ac6f44920c9af21f9bb06944b6e7f23fd4ac58 (patch) | |
tree | d87b559326e5996d0aba1af04ab3acf6a67f09b5 /Doc/extending/extending.rst | |
parent | e13b7fe1f3f55b246deeae184e5941d7f5250ace (diff) | |
download | cpython-49ac6f44920c9af21f9bb06944b6e7f23fd4ac58.zip cpython-49ac6f44920c9af21f9bb06944b6e7f23fd4ac58.tar.gz cpython-49ac6f44920c9af21f9bb06944b6e7f23fd4ac58.tar.bz2 |
Some corrections for the Doc/extending documentation. Closes #14129
Diffstat (limited to 'Doc/extending/extending.rst')
-rw-r--r-- | Doc/extending/extending.rst | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/Doc/extending/extending.rst b/Doc/extending/extending.rst index 7f1ad5d..3261580 100644 --- a/Doc/extending/extending.rst +++ b/Doc/extending/extending.rst @@ -384,9 +384,6 @@ optionally followed by an import of the module:: imports it. */ PyImport_ImportModule("spam"); -An example may be found in the file :file:`Demo/embed/demo.c` in the Python -source distribution. - .. note:: Removing entries from ``sys.modules`` or importing compiled modules into |