[Python-checkins] python/dist/src/Doc/whatsnew whatsnew23.tex,1.37,1.38

akuchling@users.sourceforge.net akuchling@users.sourceforge.net
Mon, 22 Jul 2002 11:50:13 -0700


Update of /cvsroot/python/python/dist/src/Doc/whatsnew
In directory usw-pr-cvs1:/tmp/cvs-serv25794

Modified Files:
	whatsnew23.tex 
Log Message:
Rewrite a paragraph, and use correct mark-up


Index: whatsnew23.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/whatsnew/whatsnew23.tex,v
retrieving revision 1.37
retrieving revision 1.38
diff -C2 -d -r1.37 -r1.38
*** whatsnew23.tex	22 Jul 2002 13:18:59 -0000	1.37
--- whatsnew23.tex	22 Jul 2002 18:50:11 -0000	1.38
***************
*** 18,21 ****
--- 18,23 ----
  % Bug #580462: changes to GC API
  %
+ % Pure Python strptime implementation by Brett Cannon.  See SF patch 474274.
+ %
  
  %\section{Introduction \label{intro}}
***************
*** 837,841 ****
  \section{Build and C API Changes}
  
! Changes to Python's build process, and to the C API, include:
  
  \begin{itemize}
--- 839,843 ----
  \section{Build and C API Changes}
  
! Changes to Python's build process and to the C API include:
  
  \begin{itemize}
***************
*** 846,853 ****
  Palkovsky.)
  
! \item The public Python C API will generally be declared using PyAPI_FUNC
! and PyAPI_DATA macros, while Python extension module init functions
! will be declared with PyMODINIT_FUNC.  DL_EXPORT/DL_IMPORT macros
! are deprecated.
  
  \item The interpreter can be compiled without any docstrings for 
--- 848,857 ----
  Palkovsky.)
  
! \item The  \csimplemacro{DL_EXPORT} and \csimplemacro{DL_IMPORT} macros are now
! deprecated.  Initialization functions for Python extension modules
! should now be declared using the new macro
! \csimplemacro{PyMODINIT_FUNC}, while the Python core will generally
! use the \csimplemacro{PyAPI_FUNC} and \csimplemacro{PyAPI_DATA}
! macros.
  
  \item The interpreter can be compiled without any docstrings for