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'."); _______________________________________________ Python-3000-checkins mailing list [email protected] http://mail.python.org/mailman/listinfo/python-3000-checkins
