]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Correct referenced RFC number in cgi module (GH-22827)
authorMike Lei <mikelei8291@users.noreply.github.com>
Thu, 17 Dec 2020 01:34:19 +0000 (01:34 +0000)
committerGitHub <noreply@github.com>
Thu, 17 Dec 2020 01:34:19 +0000 (17:34 -0800)
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.

Lib/cgi.py

index 77ab703cc036004a980e5e014d69120fa8e5e072..6018c3608697af7264011cdc32ea44fa1c60f297 100755 (executable)
@@ -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)