Search notes:

CPython: Include/pymacro.h

Macros for inline documentation

PyDoc_VAR(name)

#define PyDoc_VAR(name) static const char name[]

PyDoc_STRVAR(name,str)

#define PyDoc_STRVAR(name,str) PyDoc_VAR(name) = PyDoc_STR(str)

PyDoc_STR(str)

#ifdef WITH_DOC_STRINGS
#define PyDoc_STR(str) str
#else
#define PyDoc_STR(str) ""
#endif

Index