From d68d3ee3dd504661a6f5b0f5810211fef814b919 Mon Sep 17 00:00:00 2001 From: Neil Schemenauer Date: Tue, 8 Jun 2004 02:58:50 +0000 Subject: Note that memory returned by PyBuffer_New is not specifically aligned. Closes SF bug #472568. --- Doc/api/concrete.tex | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Doc/api/concrete.tex b/Doc/api/concrete.tex index c9ca1e7..63f9667 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} -- cgit v0.12