diff options
Diffstat (limited to 'Doc/faq/windows.rst')
-rw-r--r-- | Doc/faq/windows.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/faq/windows.rst b/Doc/faq/windows.rst index bfd03f7..6266d10 100644 --- a/Doc/faq/windows.rst +++ b/Doc/faq/windows.rst @@ -541,7 +541,7 @@ assumed by the Python interpreter it won't work. The Python 1.5.* DLLs (``python15.dll``) are all compiled with MS VC++ 5.0 and with multithreading-DLL options (``/MD``). -If you can't change compilers or flags, try using :cfunc:`Py_RunSimpleString`. +If you can't change compilers or flags, try using :c:func:`Py_RunSimpleString`. A trick to get it to run an arbitrary file is to construct a call to :func:`execfile` with the name of your file as argument. |