From: Eric V. Smith Date: Wed, 26 Aug 2015 18:10:32 +0000 (-0400) Subject: Fixed an incorrect comment. X-Git-Tag: v3.6.0a1~1733 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=ab2aa6dc9197a3fc8fca5958a8578e697f88034e;p=thirdparty%2FPython%2Fcpython.git Fixed an incorrect comment. --- diff --git a/Objects/stringlib/unicode_format.h b/Objects/stringlib/unicode_format.h index aec221acff9d..d72e47d348aa 100644 --- a/Objects/stringlib/unicode_format.h +++ b/Objects/stringlib/unicode_format.h @@ -67,7 +67,7 @@ SubString_new_object(SubString *str) return PyUnicode_Substring(str->str, str->start, str->end); } -/* return a new string. if str->str is NULL, return None */ +/* return a new string. if str->str is NULL, return a new empty string */ Py_LOCAL_INLINE(PyObject *) SubString_new_object_or_empty(SubString *str) {