[Python-checkins] python/dist/src/Doc/ext extending.tex, 1.24.10.2, 1.24.10.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/ext
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5465/ext

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


Index: extending.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/ext/extending.tex,v
retrieving revision 1.24.10.2
retrieving revision 1.24.10.3
diff -C2 -d -r1.24.10.2 -r1.24.10.3
*** extending.tex	7 Nov 2003 12:11:16 -0000	1.24.10.2
--- extending.tex	31 Mar 2004 07:48:14 -0000	1.24.10.3
***************
*** 47,53 ****
  which pulls in the Python API (you can add a comment describing the
  purpose of the module and a copyright notice if you like).
! 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 symbols defined by \file{Python.h} have a prefix of
--- 47,56 ----
  which pulls in the Python API (you can add a comment describing the
  purpose of the module and a copyright notice if you like).
! 
! \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 symbols defined by \file{Python.h} have a prefix of




More information about the Python-checkins mailing list