Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 34k
Closed
Labels
docsDocumentation in the Doc dirDocumentation in the Doc dirtype-bugAn unexpected behavior, bug, or errorAn unexpected behavior, bug, or error
Description
According to the documentation, PyObject_CopyData takes two arguments of type Py_buffer*:
Line 502 in 71db5db
| .. c:function:: int PyObject_CopyData(Py_buffer *dest, Py_buffer *src) |
But in the implementation, it actually takes two arguments of PyObject*:
Line 613 in 71db5db
| intPyObject_CopyData(PyObject*dest, PyObject*src) |
Linked PRs
Metadata
Metadata
Assignees
Labels
docsDocumentation in the Doc dirDocumentation in the Doc dirtype-bugAn unexpected behavior, bug, or errorAn unexpected behavior, bug, or error