Message217844
| Author |
skrah |
| Recipients |
josh.r, jtaylor, neologix, njs, pitrou, python-dev, skrah, vstinner |
| Date |
2014年05月03日.23:25:44 |
| SpamBayes Score |
-1.0 |
| Marked as misclassified |
Yes |
| Message-id |
<20140503232543.GA11650@sleipnir.bytereef.org> |
| In-reply-to |
<CAMpsgwafN7y3MS3zxQeKNeBrXyy-k9ybHhfFwZotWFfRGBNPAw@mail.gmail.com> |
| Content |
STINNER Victor <report@bugs.python.org> wrote:
> PyObject_Malloc(100) asks to allocate one object of 100 bytes.
Okay, then let's please call it:
_PyObject_Calloc(void *ctx, size_t nobjs, size_t objsize)
_PyObject_Alloc(int use_calloc, void *ctx, size_t nobjs, size_t objsize) |
|