From e5527f2cdda501542bf94179093e1a15d7889b74 Mon Sep 17 00:00:00 2001 From: Boris Verkhovskiy Date: Fri, 7 Mar 2025 06:06:36 -0700 Subject: Correct function name in `Doc/extending/embedding.rst` (#127539) --- Doc/extending/embedding.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Doc/extending/embedding.rst b/Doc/extending/embedding.rst index 20397dc..b777862 100644 --- a/Doc/extending/embedding.rst +++ b/Doc/extending/embedding.rst @@ -196,8 +196,8 @@ interesting part with respect to embedding Python starts with :: After initializing the interpreter, the script is loaded using :c:func:`PyImport_Import`. This routine needs a Python string as its argument, -which is constructed using the :c:func:`PyUnicode_FromString` data conversion -routine. :: +which is constructed using the :c:func:`PyUnicode_DecodeFSDefault` data +conversion routine. :: pFunc = PyObject_GetAttrString(pModule, argv[2]); /* pFunc is a new reference */ -- cgit v0.12