summaryrefslogtreecommitdiff
path: root/Objects/typeslots.py
diff options
context:
space:
mode:
Diffstat (limited to 'Objects/typeslots.py')
-rwxr-xr-xObjects/typeslots.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/Objects/typeslots.py b/Objects/typeslots.py
index b24c7f4040..ba37c40397 100755
--- a/Objects/typeslots.py
+++ b/Objects/typeslots.py
@@ -12,6 +12,8 @@ for line in sys.stdin:
member = m.group(1)
if member.startswith("tp_"):
member = "ht_type."+member
+ elif member.startswith("am_"):
+ member = "as_async."+member
elif member.startswith("nb_"):
member = "as_number."+member
elif member.startswith("mp_"):