summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Python/marshal.c2
1 files changed, 0 insertions, 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)
{