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 ronaldoussoren
Recipients georg.brandl, ronaldoussoren
Date 2009-12-26.15:47:30
SpamBayes Score 0.0009843134
Marked as misclassified No
Message-id <1261842451.56.0.935243877565.issue7577@psf.upfronthosting.co.za>
In-reply-to
Content
Another buffer documentation buglet is the documentation for 
'PyBuffer_FillInfo'. The prototype in the documentation is:

int PyBuffer_FillInfo(Py_buffer *view, void *buf, Py_ssize_t len, int 
readonly, int infoflags)

The real prototype has an additional argument (the second one in the 
prototype below):

int PyBuffer_FillInfo(Py_buffer *view, PyObject *o, void *buf,
                                       Py_ssize_t len, int readonly,
                                       int flags);
History
Date User Action Args
2009-12-26 15:47:31ronaldoussorensetrecipients: + ronaldoussoren, georg.brandl
2009-12-26 15:47:31ronaldoussorensetmessageid: <1261842451.56.0.935243877565.issue7577@psf.upfronthosting.co.za>
2009-12-26 15:47:30ronaldoussorenlinkissue7577 messages
2009-12-26 15:47:30ronaldoussorencreate