mirror of https://github.com/python/cpython.git
Close #19260: remove outdated comment in marshal.c
This commit is contained in:
parent
e1426b61f6
commit
42c25f5581
|
@ -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)
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue