[Python-checkins] python/dist/src/Doc/api concrete.tex, 1.25.10.1, 1.25.10.2 init.tex, 1.10.8.2, 1.10.8.3 newtypes.tex, 1.23.8.1, 1.23.8.2

loewis at users.sourceforge.net loewis at users.sourceforge.net
Sun Oct 19 03:31:16 EDT 2003


Update of /cvsroot/python/python/dist/src/Doc/api
In directory sc8-pr-cvs1:/tmp/cvs-serv25966/api

Modified Files:
      Tag: release23-maint
	concrete.tex init.tex newtypes.tex 
Log Message:
Patch #821093: Fix various typos.


Index: concrete.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/api/concrete.tex,v
retrieving revision 1.25.10.1
retrieving revision 1.25.10.2
diff -C2 -d -r1.25.10.1 -r1.25.10.2
*** concrete.tex	23 Aug 2003 03:39:28 -0000	1.25.10.1
--- concrete.tex	19 Oct 2003 07:31:14 -0000	1.25.10.2
***************
*** 1113,1117 ****
  % --- Unicode-Escape Codecs ----------------------------------------------
  
! These are the ``Unicode Esacpe'' codec APIs:
  
  \begin{cfuncdesc}{PyObject*}{PyUnicode_DecodeUnicodeEscape}{const char *s,
--- 1113,1117 ----
  % --- Unicode-Escape Codecs ----------------------------------------------
  
! These are the ``Unicode Escape'' codec APIs:
  
  \begin{cfuncdesc}{PyObject*}{PyUnicode_DecodeUnicodeEscape}{const char *s,
***************
*** 1139,1143 ****
  % --- Raw-Unicode-Escape Codecs ------------------------------------------
  
! These are the ``Raw Unicode Esacpe'' codec APIs:
  
  \begin{cfuncdesc}{PyObject*}{PyUnicode_DecodeRawUnicodeEscape}{const char *s,
--- 1139,1143 ----
  % --- Raw-Unicode-Escape Codecs ------------------------------------------
  
! These are the ``Raw Unicode Escape'' codec APIs:
  
  \begin{cfuncdesc}{PyObject*}{PyUnicode_DecodeRawUnicodeEscape}{const char *s,
***************
*** 1145,1149 ****
                                                 const char *errors}
    Creates a Unicode object by decoding \var{size} bytes of the
!   Raw-Unicode-Esacpe encoded string \var{s}.  Returns \NULL{} if an
    exception was raised by the codec.
  \end{cfuncdesc}
--- 1145,1149 ----
                                                 const char *errors}
    Creates a Unicode object by decoding \var{size} bytes of the
!   Raw-Unicode-Escape encoded string \var{s}.  Returns \NULL{} if an
    exception was raised by the codec.
  \end{cfuncdesc}
***************
*** 1326,1330 ****
  The following APIs are capable of handling Unicode objects and strings
  on input (we refer to them as strings in the descriptions) and return
! Unicode objects or integers as apporpriate.
  
  They all return \NULL{} or \code{-1} if an exception occurs.
--- 1326,1330 ----
  The following APIs are capable of handling Unicode objects and strings
  on input (we refer to them as strings in the descriptions) and return
! Unicode objects or integers as appropriate.
  
  They all return \NULL{} or \code{-1} if an exception occurs.

Index: init.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/api/init.tex,v
retrieving revision 1.10.8.2
retrieving revision 1.10.8.3
diff -C2 -d -r1.10.8.2 -r1.10.8.3
*** init.tex	7 Sep 2003 02:35:25 -0000	1.10.8.2
--- init.tex	19 Oct 2003 07:31:14 -0000	1.10.8.3
***************
*** 753,757 ****
    is called with this value for \var{what} when after any bytecode is
    processed after which the exception becomes set within the frame
!   being executed.  The effect of this is that as exception propogation
    causes the Python stack to unwind, the callback is called upon
    return to each frame as the exception propagates.  Only trace
--- 753,757 ----
    is called with this value for \var{what} when after any bytecode is
    processed after which the exception becomes set within the frame
!   being executed.  The effect of this is that as exception propagation
    causes the Python stack to unwind, the callback is called upon
    return to each frame as the exception propagates.  Only trace
***************
*** 768,772 ****
  \begin{cvardesc}{int}{PyTrace_RETURN}
    The value for the \var{what} parameter to \ctype{Py_tracefunc}
!   functions when a call is returning without propogating an exception.
  \end{cvardesc}
  
--- 768,772 ----
  \begin{cvardesc}{int}{PyTrace_RETURN}
    The value for the \var{what} parameter to \ctype{Py_tracefunc}
!   functions when a call is returning without propagating an exception.
  \end{cvardesc}
  

Index: newtypes.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/api/newtypes.tex,v
retrieving revision 1.23.8.1
retrieving revision 1.23.8.2
diff -C2 -d -r1.23.8.1 -r1.23.8.2
*** newtypes.tex	25 Aug 2003 04:44:33 -0000	1.23.8.1
--- newtypes.tex	19 Oct 2003 07:31:14 -0000	1.23.8.2
***************
*** 499,503 ****
    The destructor function is called by the \cfunction{Py_DECREF()} and
    \cfunction{Py_XDECREF()} macros when the new reference count is
!   zero.  At this point, the instance is still in existance, but there
    are no references to it.  The destructor function should free all
    references which the instance owns, free all memory buffers owned by
--- 499,503 ----
    The destructor function is called by the \cfunction{Py_DECREF()} and
    \cfunction{Py_XDECREF()} macros when the new reference count is
!   zero.  At this point, the instance is still in existence, but there
    are no references to it.  The destructor function should free all
    references which the instance owns, free all memory buffers owned by
***************
*** 1516,1520 ****
  
  
! \section{Supporting Cyclic Garbarge Collection
           \label{supporting-cycle-detection}}
  
--- 1516,1520 ----
  
  
! \section{Supporting Cyclic Garbage Collection
           \label{supporting-cycle-detection}}
  





More information about the Python-checkins mailing list