From 42c25f558168b6aebc148f35990af5de495bee08 Mon Sep 17 00:00:00 2001 From: Antoine Pitrou Date: Mon, 14 Oct 2013 20:50:32 +0200 Subject: Close #19260: remove outdated comment in marshal.c --- Python/marshal.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/Python/marshal.c b/Python/marshal.c index 7273e7c..f94276a 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) { -- cgit v0.12