From: Antoine Pitrou Date: Mon, 14 Oct 2013 18:50:32 +0000 (+0200) Subject: Close #19260: remove outdated comment in marshal.c X-Git-Tag: v3.4.0a4~101 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=42c25f558168b6aebc148f35990af5de495bee08;p=thirdparty%2FPython%2Fcpython.git Close #19260: remove outdated comment in marshal.c --- diff --git a/Python/marshal.c b/Python/marshal.c index 7273e7cd3adb..f94276ad3252 100644 --- a/Python/marshal.c +++ b/Python/marshal.c @@ -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) {