[Python-checkins] python/dist/src/Doc/api intro.tex,1.5,1.6

fdrake at users.sourceforge.net fdrake at users.sourceforge.net
Wed Mar 31 02:45:49 EST 2004


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

Modified Files:
	intro.tex 
Log Message:
Emphasize the requirement that Python.h be included first more strongly.
Closes SF bug #837228; backporting for Python 2.3.4.


Index: intro.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/api/intro.tex,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -d -r1.5 -r1.6
*** intro.tex	6 Nov 2003 21:08:11 -0000	1.5
--- intro.tex	31 Mar 2004 07:45:46 -0000	1.6
***************
*** 38,44 ****
  \code{<stdio.h>}, \code{<string.h>}, \code{<errno.h>},
  \code{<limits.h>}, and \code{<stdlib.h>} (if available).
! Since Python may define some pre-processor definitions which affect
! the standard headers on some systems, you must include \file{Python.h}
! before any standard headers are included.
  
  All user visible names defined by Python.h (except those defined by
--- 38,47 ----
  \code{<stdio.h>}, \code{<string.h>}, \code{<errno.h>},
  \code{<limits.h>}, and \code{<stdlib.h>} (if available).
! 
! \begin{notice}[warning]
!   Since Python may define some pre-processor definitions which affect
!   the standard headers on some systems, you \emph{must} include
!   \file{Python.h} before any standard headers are included.
! \end{notice}
  
  All user visible names defined by Python.h (except those defined by




More information about the Python-checkins mailing list