[Python-checkins] python/dist/src/Objects stringobject.c,2.206,2.207

gvanrossum@users.sourceforge.net gvanrossum@users.sourceforge.net
Wed, 09 Apr 2003 12:32:02 -0700


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

Modified Files:
	stringobject.c 
Log Message:
Reformat a few docstrings that caused line wraps in help() output.


Index: stringobject.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Objects/stringobject.c,v
retrieving revision 2.206
retrieving revision 2.207
diff -C2 -d -r2.206 -r2.207
*** stringobject.c	31 Mar 2003 18:07:42 -0000	2.206
--- stringobject.c	9 Apr 2003 19:31:57 -0000	2.207
***************
*** 2382,2388 ****
  "S.startswith(prefix[, start[, end]]) -> bool\n\
  \n\
! Return True if S starts with the specified prefix, False otherwise.  With\n\
! optional start, test S beginning at that position.  With optional end, stop\n\
! comparing S at that position.");
  
  static PyObject *
--- 2382,2388 ----
  "S.startswith(prefix[, start[, end]]) -> bool\n\
  \n\
! Return True if S starts with the specified prefix, False otherwise.\n\
! With optional start, test S beginning at that position.\n\
! With optional end, stop comparing S at that position.");
  
  static PyObject *
***************
*** 2433,2439 ****
  "S.endswith(suffix[, start[, end]]) -> bool\n\
  \n\
! Return True if S ends with the specified suffix, False otherwise.  With\n\
! optional start, test S beginning at that position.  With optional end, stop\n\
! comparing S at that position.");
  
  static PyObject *
--- 2433,2439 ----
  "S.endswith(suffix[, start[, end]]) -> bool\n\
  \n\
! Return True if S ends with the specified suffix, False otherwise.\n\
! With optional start, test S beginning at that position.\n\
! With optional end, stop comparing S at that position.");
  
  static PyObject *