summaryrefslogtreecommitdiffstats
path: root/Include/cpython/funcobject.h
diff options
context:
space:
mode:
Diffstat (limited to 'Include/cpython/funcobject.h')
-rw-r--r--Include/cpython/funcobject.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/Include/cpython/funcobject.h b/Include/cpython/funcobject.h
index 5979feb..c716330 100644
--- a/Include/cpython/funcobject.h
+++ b/Include/cpython/funcobject.h
@@ -131,17 +131,17 @@ PyAPI_DATA(PyTypeObject) PyStaticMethod_Type;
PyAPI_FUNC(PyObject *) PyClassMethod_New(PyObject *);
PyAPI_FUNC(PyObject *) PyStaticMethod_New(PyObject *);
-#define FOREACH_FUNC_EVENT(V) \
- V(CREATE) \
- V(DESTROY) \
- V(MODIFY_CODE) \
- V(MODIFY_DEFAULTS) \
+#define PY_FOREACH_FUNC_EVENT(V) \
+ V(CREATE) \
+ V(DESTROY) \
+ V(MODIFY_CODE) \
+ V(MODIFY_DEFAULTS) \
V(MODIFY_KWDEFAULTS)
typedef enum {
- #define DEF_EVENT(EVENT) PyFunction_EVENT_##EVENT,
- FOREACH_FUNC_EVENT(DEF_EVENT)
- #undef DEF_EVENT
+ #define PY_DEF_EVENT(EVENT) PyFunction_EVENT_##EVENT,
+ PY_FOREACH_FUNC_EVENT(PY_DEF_EVENT)
+ #undef PY_DEF_EVENT
} PyFunction_WatchEvent;
/*