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 | e8c52e13eedeff0d865e36798cb8e5dff4a4ce17 (patch) | |
tree | de66aef4c73a2e7d05bafe73b0be6cf967b29ff6 /Doc/extending | |
parent | e3005461c38f48f8c66d2033b44db159d23aebb7 (diff) | |
download | cpython-e8c52e13eedeff0d865e36798cb8e5dff4a4ce17.zip cpython-e8c52e13eedeff0d865e36798cb8e5dff4a4ce17.tar.gz cpython-e8c52e13eedeff0d865e36798cb8e5dff4a4ce17.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 792586d..97c6d03 100644 --- a/Doc/extending/extending.rst +++ b/Doc/extending/extending.rst @@ -372,6 +372,8 @@ to :c:func:`Py_Initialize`:: /* Add a static module */ initspam(); + ... + An example may be found in the file :file:`Demo/embed/demo.c` in the Python source distribution. |