This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

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)
History
Date User Action Args
2014-05-03 23:25:44skrahsetrecipients: + skrah, pitrou, vstinner, njs, neologix, python-dev, jtaylor, josh.r
2014-05-03 23:25:44skrahlinkissue21233 messages
2014-05-03 23:25:44skrahcreate