[Python-checkins] python/dist/src/Doc/api concrete.tex,1.43,1.44

nascheme at users.sourceforge.net nascheme at users.sourceforge.net
Mon Jun 7 22:58:54 EDT 2004


Update of /cvsroot/python/python/dist/src/Doc/api
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv15971/Doc/api

Modified Files:
	concrete.tex 
Log Message:
Note that memory returned by PyBuffer_New is not specifically aligned.
Closes SF bug #472568.


Index: concrete.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/api/concrete.tex,v
retrieving revision 1.43
retrieving revision 1.44
diff -C2 -d -r1.43 -r1.44
*** concrete.tex	3 Jun 2004 09:55:27 -0000	1.43
--- concrete.tex	8 Jun 2004 02:58:50 -0000	1.44
***************
*** 1566,1570 ****
    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.
  \end{cfuncdesc}
  
--- 1566,1572 ----
    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.  Note that the memory buffer (as
!   returned by \cfunction{PyObject_AsWriteBuffer()}) is not specifically
!   aligned.
  \end{cfuncdesc}
  




More information about the Python-checkins mailing list