mirror of
https://github.com/python/cpython.git
synced 2025-10-17 20:28:43 +00:00
bpo-23952: Document cgi module's maxlen variable (GH-30338)
This commit is contained in:
parent
fa90e48c53
commit
6c4e44ef8a
2 changed files with 10 additions and 0 deletions
|
@ -13,6 +13,11 @@
|
|||
|
||||
This module defines a number of utilities for use by CGI scripts
|
||||
written in Python.
|
||||
|
||||
The global variable maxlen can be set to an integer indicating the maximum size
|
||||
of a POST request. POST requests larger than this size will result in a
|
||||
ValueError being raised during parsing. The default value of this variable is 0,
|
||||
meaning the request size is unlimited.
|
||||
"""
|
||||
|
||||
# History
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue