[Python-3000-checkins] r56803 - python/branches/py3k-struni/Objects/unicodeobject.c

collin.winter python-3000-checkins at python.org
Tue Aug 7 21:42:11 CEST 2007


Author: collin.winter
Date: Tue Aug  7 21:42:11 2007
New Revision: 56803

Modified:
   python/branches/py3k-struni/Objects/unicodeobject.c
Log:
Remove references to unicode from help(str).

Modified: python/branches/py3k-struni/Objects/unicodeobject.c
==============================================================================
--- python/branches/py3k-struni/Objects/unicodeobject.c	(original)
+++ python/branches/py3k-struni/Objects/unicodeobject.c	Tue Aug  7 21:42:11 2007
@@ -8606,9 +8606,9 @@
 }
 
 PyDoc_STRVAR(unicode_doc,
-"unicode(string [, encoding[, errors]]) -> object\n\
+"str(string [, encoding[, errors]]) -> object\n\
 \n\
-Create a new Unicode object from the given encoded string.\n\
+Create a new string 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'.");
 


More information about the Python-3000-checkins mailing list