Fixed an incorrect comment.

This commit is contained in:
Eric V. Smith 2015-08-26 14:10:32 -04:00
parent 7f344a89ef
commit ab2aa6dc91
1 changed files with 1 additions and 1 deletions

View File

@ -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)
{