diff options
author | Yury Selivanov <yselivanov@sprymix.com> | 2015-05-21 15:50:30 (GMT) |
---|---|---|
committer | Yury Selivanov <yselivanov@sprymix.com> | 2015-05-21 15:50:30 (GMT) |
commit | f3e40fac10fa240b98a709191c6648fdd585b55f (patch) | |
tree | e5f27a9f6b15c73d46e42dec738a2a8fb44f39d8 /Doc/extending | |
parent | 548de2b210d60e4619c69269685ca66a59b29b6b (diff) | |
download | cpython-f3e40fac10fa240b98a709191c6648fdd585b55f.zip cpython-f3e40fac10fa240b98a709191c6648fdd585b55f.tar.gz cpython-f3e40fac10fa240b98a709191c6648fdd585b55f.tar.bz2 |
Issue 24180: Documentation for PEP 492 changes.
Diffstat (limited to 'Doc/extending')
-rw-r--r-- | Doc/extending/newtypes.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/extending/newtypes.rst b/Doc/extending/newtypes.rst index aaa37b8..b7e35f4 100644 --- a/Doc/extending/newtypes.rst +++ b/Doc/extending/newtypes.rst @@ -80,7 +80,7 @@ Moving on, we come to the crunch --- the type object. :: 0, /* tp_print */ 0, /* tp_getattr */ 0, /* tp_setattr */ - 0, /* tp_reserved */ + 0, /* tp_as_async */ 0, /* tp_repr */ 0, /* tp_as_number */ 0, /* tp_as_sequence */ |