[Python-checkins] python/dist/src/Objects unicodeobject.c,2.156,2.157

montanaro@users.sourceforge.net montanaro@users.sourceforge.net
Fri, 26 Jul 2002 09:22:48 -0700


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

Modified Files:
	unicodeobject.c 
Log Message:
tighten up the unicode object's docstring a tad


Index: unicodeobject.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Objects/unicodeobject.c,v
retrieving revision 2.156
retrieving revision 2.157
diff -C2 -d -r2.156 -r2.157
*** unicodeobject.c	17 Jul 2002 16:30:38 -0000	2.156
--- unicodeobject.c	26 Jul 2002 16:22:46 -0000	2.157
***************
*** 5852,5857 ****
  \n\
  Create a new Unicode object from the given encoded string.\n\
! encoding defaults to the current default string encoding and \n\
! errors, defining the error handling, to 'strict'.");
  
  PyTypeObject PyUnicode_Type = {
--- 5852,5857 ----
  \n\
  Create a new Unicode object from the given encoded string.\n\
! encoding defaults to the current default string encoding.\n\
! errors can be 'strict', 'replace' or 'ignore' and defaults to 'strict'.");
  
  PyTypeObject PyUnicode_Type = {