Close #19260: remove outdated comment in marshal.c

This commit is contained in:
Antoine Pitrou 2013-10-14 20:50:32 +02:00
parent e1426b61f6
commit 42c25f5581
1 changed files with 0 additions and 2 deletions

View 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)
{