Fix a grammar error in the Py_ALWAYS_INLINE doc (#129304)

This commit is contained in:
Kuba_Z2 2025-04-24 16:20:48 +02:00 committed by GitHub
parent 4924bcf0e4
commit 984a314b9f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -148,7 +148,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,