From: Neil Schemenauer Date: Tue, 8 Jun 2004 02:58:50 +0000 (+0000) Subject: Note that memory returned by PyBuffer_New is not specifically aligned. X-Git-Tag: v2.4a1~226 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=d68d3ee3dd504661a6f5b0f5810211fef814b919;p=thirdparty%2FPython%2Fcpython.git Note that memory returned by PyBuffer_New is not specifically aligned. Closes SF bug #472568. --- diff --git a/Doc/api/concrete.tex b/Doc/api/concrete.tex index c9ca1e7eecea..63f9667c63e2 100644 --- a/Doc/api/concrete.tex +++ b/Doc/api/concrete.tex @@ -1565,7 +1565,9 @@ format. \begin{cfuncdesc}{PyObject*}{PyBuffer_New}{int size} Returns a new writable buffer object that maintains its own memory buffer of \var{size} bytes. \exception{ValueError} is returned if - \var{size} is not zero or positive. + \var{size} is not zero or positive. Note that the memory buffer (as + returned by \cfunction{PyObject_AsWriteBuffer()}) is not specifically + aligned. \end{cfuncdesc}