From: Georg Brandl Date: Sun, 6 Oct 2013 11:14:10 +0000 (+0200) Subject: Minor improvement: add indication that the main function goes on. X-Git-Tag: v2.7.6rc1~78 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e8c52e13eedeff0d865e36798cb8e5dff4a4ce17;p=python Minor improvement: add indication that the main function goes on. --- diff --git a/Doc/extending/extending.rst b/Doc/extending/extending.rst index 792586d936..97c6d03e17 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.