Commit c551fb8e authored by Jason Madden's avatar Jason Madden

clarify size comment [skip ci]

parent aee4d51e
...@@ -157,7 +157,7 @@ class Input(object): ...@@ -157,7 +157,7 @@ class Input(object):
# On Python 2, self.rfile is usually socket.makefile(), which # On Python 2, self.rfile is usually socket.makefile(), which
# uses cStringIO.StringIO. If *length* is greater than the C # uses cStringIO.StringIO. If *length* is greater than the C
# sizeof(int) (typically 32 bits), parsing the argument to # sizeof(int) (typically 32 bits signed), parsing the argument to
# readline raises OverflowError. StringIO.read(), OTOH, uses # readline raises OverflowError. StringIO.read(), OTOH, uses
# PySize_t, typically a long (64 bits). In a bare readline() # PySize_t, typically a long (64 bits). In a bare readline()
# case, because the header lines we're trying to read with # case, because the header lines we're trying to read with
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment