diff options
author | Vladimir Matveev <vladima@fb.com> | 2020-11-10 12:09:55 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-10 12:09:55 -0800 |
commit | 1e996c3a3b51e9c6f1f4cea8a6dbcf3bcb865060 (patch) | |
tree | 3f3ffd5d90532c6f4b1ec013919e3677d63dd21c /Objects/typeslots.inc | |
parent | e59b2deffde61e5641cabd65034fa11b4db898ba (diff) | |
download | cpython-git-1e996c3a3b51e9c6f1f4cea8a6dbcf3bcb865060.tar.gz |
bpo-42085: Introduce dedicated entry in PyAsyncMethods for sending values (#22780)
Diffstat (limited to 'Objects/typeslots.inc')
-rw-r--r-- | Objects/typeslots.inc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Objects/typeslots.inc b/Objects/typeslots.inc index ffc9bb2e1c..cc4ef1170f 100644 --- a/Objects/typeslots.inc +++ b/Objects/typeslots.inc @@ -79,3 +79,4 @@ offsetof(PyHeapTypeObject, as_async.am_await), offsetof(PyHeapTypeObject, as_async.am_aiter), offsetof(PyHeapTypeObject, as_async.am_anext), offsetof(PyHeapTypeObject, ht_type.tp_finalize), +offsetof(PyHeapTypeObject, as_async.am_send), |