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: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=e8c52e13eedeff0d865e36798cb8e5dff4a4ce17;p=thirdparty%2FPython%2Fcpython.git Minor improvement: add indication that the main function goes on. --- diff --git a/Doc/extending/extending.rst b/Doc/extending/extending.rst index 792586d9364f..97c6d03e1748 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.