File tree Expand file tree Collapse file tree 2 files changed +10
-0
lines changed Expand file tree Collapse file tree 2 files changed +10
-0
lines changed Original file line number Diff line number Diff line change @@ -21,6 +21,11 @@ Support module for Common Gateway Interface (CGI) scripts.
21
21
This module defines a number of utilities for use by CGI scripts written in
22
22
Python.
23
23
24
+ The global variable ``maxlen `` can be set to an integer indicating the maximum
25
+ size of a POST request. POST requests larger than this size will result in a
26
+ :exc: `ValueError ` being raised during parsing. The default value of this
27
+ variable is ``0 ``, meaning the request size is unlimited.
28
+
24
29
25
30
Introduction
26
31
------------
Original file line number Diff line number Diff line change 13
13
14
14
This module defines a number of utilities for use by CGI scripts
15
15
written in Python.
16
+
17
+ The global variable maxlen can be set to an integer indicating the maximum size
18
+ of a POST request. POST requests larger than this size will result in a
19
+ ValueError being raised during parsing. The default value of this variable is 0,
20
+ meaning the request size is unlimited.
16
21
"""
17
22
18
23
# History
You can’t perform that action at this time.
0 commit comments