]> granicus.if.org Git - python/commitdiff
Issue #22413: Remove comment made out of date by Argument Clinic
authorMartin Panter <vadmium+py@gmail.com>
Sat, 10 Oct 2015 10:17:57 +0000 (10:17 +0000)
committerMartin Panter <vadmium+py@gmail.com>
Sat, 10 Oct 2015 10:17:57 +0000 (10:17 +0000)
Modules/_io/stringio.c

index 21c2b19a407d7b25bc3ee7ec315af19a42261995..73018a539071b032ea3a8beda966776228532d2e 100644 (file)
@@ -696,10 +696,8 @@ _io_StringIO___init___impl(stringio *self, PyObject *value,
     char *newline = "\n";
     Py_ssize_t value_len;
 
-    /* Parse the newline argument. This used to be done with the 'z'
-       specifier, however this allowed any object with the buffer interface to
-       be converted. Thus we have to parse it manually since we only want to
-       allow unicode objects or None. */
+    /* Parse the newline argument. We only want to allow unicode objects or
+       None. */
     if (newline_obj == Py_None) {
         newline = NULL;
     }