tighten up the unicode object's docstring a tad

This commit is contained in:
Skip Montanaro 2002-07-26 16:22:46 +00:00
parent f03c692357
commit 35b37a5c11

View file

@ -5851,8 +5851,8 @@ PyDoc_STRVAR(unicode_doc,
"unicode(string [, encoding[, errors]]) -> object\n\ "unicode(string [, encoding[, errors]]) -> object\n\
\n\ \n\
Create a new Unicode object from the given encoded string.\n\ Create a new Unicode object from the given encoded string.\n\
encoding defaults to the current default string encoding and \n\ encoding defaults to the current default string encoding.\n\
errors, defining the error handling, to 'strict'."); errors can be 'strict', 'replace' or 'ignore' and defaults to 'strict'.");
PyTypeObject PyUnicode_Type = { PyTypeObject PyUnicode_Type = {
PyObject_HEAD_INIT(&PyType_Type) PyObject_HEAD_INIT(&PyType_Type)