Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork33.7k
Closed
Description
Bug report
Here:
cpython/Modules/_testcapi/vectorcall.c
Lines 347 to 354 in8303d32
| staticPyObject* | |
| MethodDescriptor2_new(PyTypeObject*type,PyObject*args,PyObject*kw) | |
| { | |
| MethodDescriptor2Object*op=PyObject_New(MethodDescriptor2Object,type); | |
| op->base.vectorcall=NULL; | |
| op->vectorcall=MethodDescriptor_vectorcall; | |
| return (PyObject*)op; | |
| } |
I know that memory errors are very unluckily, but still: why not having a correct code?