Where Online Learning is simpler!
The C and C++ Include Header Files
cat -n /usr/include/python3.14/pystats.h
1 // Statistics on Python performance (public API). 2 // 3 // Define _Py_INCREF_STAT_INC() and _Py_DECREF_STAT_INC() used by Py_INCREF() 4 // and Py_DECREF(). 5 // 6 // See Include/cpython/pystats.h for the full API. 7 8 #ifndef Py_PYSTATS_H 9 #define Py_PYSTATS_H 10 #ifdef __cplusplus 11 extern "C" { 12 #endif 13 14 #if defined(Py_STATS) && !defined(Py_LIMITED_API) 15 # define Py_CPYTHON_PYSTATS_H 16 # include "cpython/pystats.h" 17 # undef Py_CPYTHON_PYSTATS_H 18 #else 19 # define _Py_INCREF_STAT_INC() ((void)0) 20 # define _Py_DECREF_STAT_INC() ((void)0) 21 # define _Py_INCREF_IMMORTAL_STAT_INC() ((void)0) 22 # define _Py_DECREF_IMMORTAL_STAT_INC() ((void)0) 23 #endif // !Py_STATS 24 25 #ifdef __cplusplus 26 } 27 #endif 28 #endif // !Py_PYSTATS_H