From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Thu, 24 Apr 2025 14:27:41 +0000 (+0200) Subject: [3.13] Fix a grammar error in the `Py_ALWAYS_INLINE` doc (GH-129304) (#132877) X-Git-Tag: v3.13.4~231 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=52e0f564d053ef593a6af08473f9efd081578c45;p=thirdparty%2FPython%2Fcpython.git [3.13] Fix a grammar error in the `Py_ALWAYS_INLINE` doc (GH-129304) (#132877) Co-authored-by: Kuba_Z2 <77853483+KubaZ2@users.noreply.github.com> --- diff --git a/Doc/c-api/intro.rst b/Doc/c-api/intro.rst index 8ef463e3f88c..c4b2c7898dd1 100644 --- a/Doc/c-api/intro.rst +++ b/Doc/c-api/intro.rst @@ -138,7 +138,7 @@ complete listing. .. c:macro:: Py_ALWAYS_INLINE Ask the compiler to always inline a static inline function. The compiler can - ignore it and decides to not inline the function. + ignore it and decide to not inline the function. It can be used to inline performance critical static inline functions when building Python in debug mode with function inlining disabled. For example,