]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Close #19260: remove outdated comment in marshal.c
authorAntoine Pitrou <solipsis@pitrou.net>
Mon, 14 Oct 2013 18:50:32 +0000 (20:50 +0200)
committerAntoine Pitrou <solipsis@pitrou.net>
Mon, 14 Oct 2013 18:50:32 +0000 (20:50 +0200)
Python/marshal.c

index 7273e7cd3adb46f246fe81e85a8e7c96d2e93713..f94276ad3252da909b14e677053d1b7da48aa54a 100644 (file)
@@ -614,7 +614,6 @@ r_string(Py_ssize_t n, RFILE *p)
     }
     if (!p->readable) {
         assert(p->fp != NULL);
-        /* The result fits into int because it must be <=n. */
         read = fread(p->buf, 1, n, p->fp);
     }
     else {
@@ -650,7 +649,6 @@ r_string(Py_ssize_t n, RFILE *p)
     return p->buf;
 }
 
-
 static int
 r_byte(RFILE *p)
 {