From e8c52e13eedeff0d865e36798cb8e5dff4a4ce17 Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Sun, 6 Oct 2013 13:14:10 +0200 Subject: [PATCH] Minor improvement: add indication that the main function goes on. --- Doc/extending/extending.rst | 2 ++ 1 file changed, 2 insertions(+) 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. -- 2.50.1