Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e1426b6 commit 42c25f5Copy full SHA for 42c25f5
1 file changed
Python/marshal.c
@@ -614,7 +614,6 @@ r_string(Py_ssize_t n, RFILE *p)
614
}
615
if (!p->readable) {
616
assert(p->fp != NULL);
617
- /* The result fits into int because it must be <=n. */
618
read = fread(p->buf, 1, n, p->fp);
619
620
else {
@@ -650,7 +649,6 @@ r_string(Py_ssize_t n, RFILE *p)
650
649
return p->buf;
651
652
653
-
654
static int
655
r_byte(RFILE *p)
656
{
0 commit comments