]> granicus.if.org Git - python/commitdiff
Fixed an incorrect comment.
authorEric V. Smith <eric@trueblade.com>
Wed, 26 Aug 2015 18:10:32 +0000 (14:10 -0400)
committerEric V. Smith <eric@trueblade.com>
Wed, 26 Aug 2015 18:10:32 +0000 (14:10 -0400)
Objects/stringlib/unicode_format.h

index aec221acff9d43dee1d0f99b2ff39fd38c49c83c..d72e47d348aa81a6738d461de7723d0f5e803ddd 100644 (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)
 {