[Python-checkins] python/dist/src/Objects unicodeobject.c,2.185,2.186

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


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

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


Index: unicodeobject.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Objects/unicodeobject.c,v
retrieving revision 2.185
retrieving revision 2.186
diff -C2 -d -r2.185 -r2.186
*** unicodeobject.c	2 Apr 2003 16:37:23 -0000	2.185
--- unicodeobject.c	9 Apr 2003 19:32:45 -0000	2.186
***************
*** 5694,5700 ****
  "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 *
--- 5694,5700 ----
  "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 *
***************
*** 5725,5731 ****
  "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 *
--- 5725,5731 ----
  "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 *