[Python-checkins] python/dist/src/Include abstract.h,2.46,2.47

rhettinger@users.sourceforge.net rhettinger@users.sourceforge.net
Thu, 27 Feb 2003 21:11:05 -0800


Update of /cvsroot/python/python/dist/src/Include
In directory sc8-pr-cvs1:/tmp/cvs-serv29966

Modified Files:
	abstract.h 
Log Message:
Fix spelling and grammar.

Index: abstract.h
===================================================================
RCS file: /cvsroot/python/python/dist/src/Include/abstract.h,v
retrieving revision 2.46
retrieving revision 2.47
diff -C2 -d -r2.46 -r2.47
*** abstract.h	25 Nov 2002 15:06:29 -0000	2.46
--- abstract.h	28 Feb 2003 05:11:03 -0000	2.47
***************
*** 49,53 ****
    components of a Python C interface consisting of several components.
  
!   From the viewpoint of of C access to Python services, we have (as
    suggested by Guido in off-line discussions):
  
--- 49,53 ----
    components of a Python C interface consisting of several components.
  
!   From the viewpoint of C access to Python services, we have (as
    suggested by Guido in off-line discussions):
  
***************
*** 69,73 ****
      interface provided by the standard built-in types, such as floats,
      strings, and lists.  This interface exists and is currently
!     documented by the collection of include files provides with the
      Python distributions.
  
--- 69,73 ----
      interface provided by the standard built-in types, such as floats,
      strings, and lists.  This interface exists and is currently
!     documented by the collection of include files provided with the
      Python distributions.
  
***************
*** 468,472 ****
  
  	  0 is returned on success.  buffer and buffer_len are only
! 	  set in case no error occurrs. Otherwise, -1 is returned and
  	  an exception set.
  
--- 468,472 ----
  
  	  0 is returned on success.  buffer and buffer_len are only
! 	  set in case no error occurs. Otherwise, -1 is returned and
  	  an exception set.
  
***************
*** 705,709 ****
  
         /*
! 	 Returns the result of bitwise or or o1 and o2 on success, or
  	 NULL on failure.  This is the equivalent of the Python
  	 expression: o1|o2.
--- 705,709 ----
  
         /*
! 	 Returns the result of bitwise or on o1 and o2 on success, or
  	 NULL on failure.  This is the equivalent of the Python
  	 expression: o1|o2.
***************
*** 1042,1046 ****
  	  PY_ITERSEARCH_COUNT:  return # of times obj appears in seq; -1 if
  	  	error.
! 	  PY_ITERSEARCH_INDEX:  return 0-based index of first occurence of
  	  	obj in seq; set ValueError and return -1 if none found;
  	  	also return -1 on error.
--- 1042,1046 ----
  	  PY_ITERSEARCH_COUNT:  return # of times obj appears in seq; -1 if
  	  	error.
! 	  PY_ITERSEARCH_INDEX:  return 0-based index of first occurrence of
  	  	obj in seq; set ValueError and return -1 if none found;
  	  	also return -1 on error.