[Python-checkins] r58013 - python/trunk/Doc/extending/extending.rst

georg.brandl python-checkins at python.org
Thu Sep 6 16:49:56 CEST 2007


Author: georg.brandl
Date: Thu Sep  6 16:49:56 2007
New Revision: 58013

Modified:
   python/trunk/Doc/extending/extending.rst
Log:
Backport from 3k: #1116: fix reference to old filename.


Modified: python/trunk/Doc/extending/extending.rst
==============================================================================
--- python/trunk/Doc/extending/extending.rst	(original)
+++ python/trunk/Doc/extending/extending.rst	Thu Sep  6 16:49:56 2007
@@ -423,7 +423,7 @@
 standard interface to call a Python function.  (I won't dwell on how to call the
 Python parser with a particular string as input --- if you're interested, have a
 look at the implementation of the :option:`-c` command line option in
-:file:`Python/pythonmain.c` from the Python source code.)
+:file:`Modules/main.c` from the Python source code.)
 
 Calling a Python function is easy.  First, the Python program must somehow pass
 you the Python function object.  You should provide a function (or some other


More information about the Python-checkins mailing list