diff options
author | Eddie Elizondo <eelizondo@fb.com> | 2019-09-19 16:29:05 (GMT) |
---|---|---|
committer | Dino Viehland <dinoviehland@gmail.com> | 2019-09-19 16:29:05 (GMT) |
commit | 3368f3c6ae4140a0883e19350e672fd09c9db616 (patch) | |
tree | 0b4477fdd89aefa2b9d17e6a16c3f172f32a5660 /Doc | |
parent | 079931d12223ec98cbf53185b90db48efa61f93f (diff) | |
download | cpython-3368f3c6ae4140a0883e19350e672fd09c9db616.zip cpython-3368f3c6ae4140a0883e19350e672fd09c9db616.tar.gz cpython-3368f3c6ae4140a0883e19350e672fd09c9db616.tar.bz2 |
bpo-38140: Make dict and weakref offsets opaque for C heap types (#16076)
* Make dict and weakref offsets opaque for C heap types
* Add news
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/c-api/type.rst | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Doc/c-api/type.rst b/Doc/c-api/type.rst index 6416951..ad3e022 100644 --- a/Doc/c-api/type.rst +++ b/Doc/c-api/type.rst @@ -187,9 +187,8 @@ The following functions and structs are used to create * :c:member:`~PyTypeObject.tp_cache` * :c:member:`~PyTypeObject.tp_subclasses` * :c:member:`~PyTypeObject.tp_weaklist` + * :c:member:`~PyTypeObject.tp_vectorcall` * :c:member:`~PyTypeObject.tp_print` - * :c:member:`~PyTypeObject.tp_weaklistoffset` - * :c:member:`~PyTypeObject.tp_dictoffset` * :c:member:`~PyBufferProcs.bf_getbuffer` * :c:member:`~PyBufferProcs.bf_releasebuffer` |