diff options
author | Georg Brandl <georg@python.org> | 2013-10-06 11:14:10 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2013-10-06 11:14:10 (GMT) |
commit | 49c6fc96797a2217a7a0b03740c7a9bd1eb6efd8 (patch) | |
tree | 06166a1776b853cafa5efd1aebf7d00600c8ca07 /Doc/extending | |
parent | ed86ff868a7e6410dbe1f7e77c4f318b813c2503 (diff) | |
download | cpython-49c6fc96797a2217a7a0b03740c7a9bd1eb6efd8.zip cpython-49c6fc96797a2217a7a0b03740c7a9bd1eb6efd8.tar.gz cpython-49c6fc96797a2217a7a0b03740c7a9bd1eb6efd8.tar.bz2 |
Minor improvement: add indication that the main function goes on.
Diffstat (limited to 'Doc/extending')
-rw-r--r-- | Doc/extending/extending.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Doc/extending/extending.rst b/Doc/extending/extending.rst index eae48e8..e7c3f33 100644 --- a/Doc/extending/extending.rst +++ b/Doc/extending/extending.rst @@ -384,6 +384,8 @@ optionally followed by an import of the module:: imports it. */ PyImport_ImportModule("spam"); + ... + .. note:: Removing entries from ``sys.modules`` or importing compiled modules into |