mirror of https://github.com/python/cpython.git
Fixed an incorrect comment.
This commit is contained in:
parent
7f344a89ef
commit
ab2aa6dc91
|
@ -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)
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue