]> granicus.if.org Git - python/commitdiff
Closes #21687: delimiter in Py_SetPath is platform dependent
authorGeorg Brandl <georg@python.org>
Sat, 11 Oct 2014 12:36:02 +0000 (14:36 +0200)
committerGeorg Brandl <georg@python.org>
Sat, 11 Oct 2014 12:36:02 +0000 (14:36 +0200)
Doc/c-api/init.rst

index 0587e15d9f35e61a04eee8f039b7764ab4fcf7b3..59af41bd5aaee535991b897a8603a5dde16fca66 100644 (file)
@@ -236,7 +236,9 @@ Process-wide parameters
    :c:func:`Py_Initialize`, then :c:func:`Py_GetPath` won't attempt to compute a
    default search path but uses the one provided instead.  This is useful if
    Python is embedded by an application that has full knowledge of the location
-   of all modules.  The path components should be separated by semicolons.
+   of all modules.  The path components should be separated by the platform
+   dependent delimiter character, which is ``':'`` on Unix and Mac OS X, ``';'``
+   on Windows.
 
    This also causes :data:`sys.executable` to be set only to the raw program
    name (see :c:func:`Py_SetProgramName`) and for :data:`sys.prefix` and