Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 42c25f5

Browse files
committed
Close #19260: remove outdated comment in marshal.c
1 parent e1426b6 commit 42c25f5

1 file changed

Lines changed: 0 additions & 2 deletions

File tree

Python/marshal.c

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -614,7 +614,6 @@ r_string(Py_ssize_t n, RFILE *p)
614614
}
615615
if (!p->readable) {
616616
assert(p->fp != NULL);
617-
/* The result fits into int because it must be <=n. */
618617
read = fread(p->buf, 1, n, p->fp);
619618
}
620619
else {
@@ -650,7 +649,6 @@ r_string(Py_ssize_t n, RFILE *p)
650649
return p->buf;
651650
}
652651

653-
654652
static int
655653
r_byte(RFILE *p)
656654
{

0 commit comments

Comments
 (0)