summaryrefslogtreecommitdiff
path: root/Objects/typeslots.inc
diff options
context:
space:
mode:
authorYury Selivanov <yselivanov@sprymix.com>2015-05-11 22:57:16 -0400
committerYury Selivanov <yselivanov@sprymix.com>2015-05-11 22:57:16 -0400
commit7544508f0245173bff5866aa1598c8f6cce1fc5f (patch)
treebf80850d9cd46fc811f04b8c2484fb50775c697d /Objects/typeslots.inc
parent4e6bf4b3da03b132b0698f30ee931a350585b117 (diff)
downloadcpython-git-7544508f0245173bff5866aa1598c8f6cce1fc5f.tar.gz
PEP 0492 -- Coroutines with async and await syntax. Issue #24017.
Diffstat (limited to 'Objects/typeslots.inc')
-rw-r--r--Objects/typeslots.inc3
1 files changed, 3 insertions, 0 deletions
diff --git a/Objects/typeslots.inc b/Objects/typeslots.inc
index 2ed99d894d..bcbe0af3b8 100644
--- a/Objects/typeslots.inc
+++ b/Objects/typeslots.inc
@@ -75,3 +75,6 @@ offsetof(PyHeapTypeObject, ht_type.tp_getset),
offsetof(PyHeapTypeObject, ht_type.tp_free),
offsetof(PyHeapTypeObject, as_number.nb_matrix_multiply),
offsetof(PyHeapTypeObject, as_number.nb_inplace_matrix_multiply),
+offsetof(PyHeapTypeObject, as_async.am_await),
+offsetof(PyHeapTypeObject, as_async.am_aiter),
+offsetof(PyHeapTypeObject, as_async.am_anext),