[Python-checkins] python/dist/src/Doc/api intro.tex, 1.3.24.2, 1.3.24.3

fdrake at users.sourceforge.net fdrake at users.sourceforge.net
Wed Mar 31 02:48:17 EST 2004


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

Modified Files:
      Tag: release23-maint
	intro.tex 
Log Message:
Emphasize the requirement that Python.h be included first more strongly.
Closes SF bug #837228; backported from the head.


Index: intro.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/api/intro.tex,v
retrieving revision 1.3.24.2
retrieving revision 1.3.24.3
diff -C2 -d -r1.3.24.2 -r1.3.24.3
*** intro.tex	6 Nov 2003 21:07:47 -0000	1.3.24.2
--- intro.tex	31 Mar 2004 07:48:14 -0000	1.3.24.3
***************
*** 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