Skip to content

Commit e3b0b1f

Browse files
authored
integral? that took me a while to figure out
integral: "In mathematics, an integral assigns numbers to functions in a way that describes displacement, area, volume, and other concepts that arise by combining infinitesimal data." integer: an int type
1 parent ff58e0c commit e3b0b1f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

gunicorn/http/body.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ def __init__(self, req, unreader):
1818

1919
def read(self, size):
2020
if not isinstance(size, int):
21-
raise TypeError("size must be an integral type")
21+
raise TypeError("size must be an integer type")
2222
if size < 0:
2323
raise ValueError("Size must be positive.")
2424
if size == 0:

0 commit comments

Comments
 (0)