summaryrefslogtreecommitdiffstats
path: root/Objects/genobject.c
diff options
context:
space:
mode:
authorpenguin_wwy <940375606@qq.com>2023-05-10 22:40:59 (GMT)
committerGitHub <noreply@github.com>2023-05-10 22:40:59 (GMT)
commit373bca0cc5256dc512ffc22bdff4424f7ee8baa2 (patch)
tree2b7c9d524ad46c2ec6ff3a682f2c2b984aa85ea8 /Objects/genobject.c
parent7b8d7f56b64ab4370fea77e77ea4984dd2a73979 (diff)
downloadcpython-373bca0cc5256dc512ffc22bdff4424f7ee8baa2.zip
cpython-373bca0cc5256dc512ffc22bdff4424f7ee8baa2.tar.gz
cpython-373bca0cc5256dc512ffc22bdff4424f7ee8baa2.tar.bz2
GH-102181: Improve specialization stats for SEND (GH-102182)
Diffstat (limited to 'Objects/genobject.c')
-rw-r--r--Objects/genobject.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/Objects/genobject.c b/Objects/genobject.c
index 937d497..9252c65 100644
--- a/Objects/genobject.c
+++ b/Objects/genobject.c
@@ -1406,9 +1406,6 @@ typedef struct _PyAsyncGenWrappedValue {
#define _PyAsyncGenWrappedValue_CheckExact(o) \
Py_IS_TYPE(o, &_PyAsyncGenWrappedValue_Type)
-#define PyAsyncGenASend_CheckExact(o) \
- Py_IS_TYPE(o, &_PyAsyncGenASend_Type)
-
static int
async_gen_traverse(PyAsyncGenObject *gen, visitproc visit, void *arg)