diff options
author | Mike Lei <mikelei8291@users.noreply.github.com> | 2020-12-17 01:34:19 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-17 01:34:19 (GMT) |
commit | c143cc379c7411598e7b7b652bac7935e4687d07 (patch) | |
tree | 43da67c51f652f4016a8af48f0b6e97b3564eb88 /Lib/cgi.py | |
parent | a6ba2b901543f3006ecdb2ad8b18cb00439ff9b2 (diff) | |
download | cpython-c143cc379c7411598e7b7b652bac7935e4687d07.zip cpython-c143cc379c7411598e7b7b652bac7935e4687d07.tar.gz cpython-c143cc379c7411598e7b7b652bac7935e4687d07.tar.bz2 |
Correct referenced RFC number in cgi module (GH-22827)
The quoted sentence can be found from the last paragraph of RFC 2046, Section 5.1, while the content of RFC 2026 is unrelated to this module.
Diffstat (limited to 'Lib/cgi.py')
-rwxr-xr-x | Lib/cgi.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -194,7 +194,7 @@ def parse_multipart(fp, pdict, encoding="utf-8", errors="replace"): value is a list of values for that field. For non-file fields, the value is a list of strings. """ - # RFC 2026, Section 5.1 : The "multipart" boundary delimiters are always + # RFC 2046, Section 5.1 : The "multipart" boundary delimiters are always # represented as 7bit US-ASCII. boundary = pdict['boundary'].decode('ascii') ctype = "multipart/form-data; boundary={}".format(boundary) |