summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2020-07-01 09:40:14 (GMT)
committerGitHub <noreply@github.com>2020-07-01 09:40:14 (GMT)
commit652585c6291e237faa942d27d6cc2611665e5afa (patch)
tree25d6395acd64c6f6dba8d75d86f52a43e1d75760
parentc84d3fe6b3301c7fd4a82e63fb4d545a7b9df84b (diff)
downloadcpython-652585c6291e237faa942d27d6cc2611665e5afa.zip
cpython-652585c6291e237faa942d27d6cc2611665e5afa.tar.gz
cpython-652585c6291e237faa942d27d6cc2611665e5afa.tar.bz2
Doc: Minor fix to init config C API documentation (GH-21198)
Co-authored-by: Tomer Vromen <tomer.vromen@intel.com> (cherry picked from commit 741008a57bdc95090b8be6ded5a9fd3f17f7bf21) Co-authored-by: tomerv <tomerv@gmail.com>
-rw-r--r--Doc/c-api/init_config.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/c-api/init_config.rst b/Doc/c-api/init_config.rst
index b7298ba..f2b82a0 100644
--- a/Doc/c-api/init_config.rst
+++ b/Doc/c-api/init_config.rst
@@ -197,12 +197,12 @@ PyPreConfig
Function to initialize a preconfiguration:
- .. c:function:: void PyPreConfig_InitIsolatedConfig(PyPreConfig *preconfig)
+ .. c:function:: void PyPreConfig_InitPythonConfig(PyPreConfig *preconfig)
Initialize the preconfiguration with :ref:`Python Configuration
<init-python-config>`.
- .. c:function:: void PyPreConfig_InitPythonConfig(PyPreConfig *preconfig)
+ .. c:function:: void PyPreConfig_InitIsolatedConfig(PyPreConfig *preconfig)
Initialize the preconfiguration with :ref:`Isolated Configuration
<init-isolated-conf>`.