diff options
author | Pierre Quentel <pierre.quentel@gmail.com> | 2019-09-11 11:05:53 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2019-09-11 11:05:53 (GMT) |
commit | 2d7cacacc310b65b43e7e2de89e7722291dea6a4 (patch) | |
tree | 97f6f93239ec1c04a28cb05b713f24cc951caafc /Misc/NEWS.d | |
parent | 972cf5c06a5ba16ad243a442dbb9c15307fbed95 (diff) | |
download | cpython-2d7cacacc310b65b43e7e2de89e7722291dea6a4.zip cpython-2d7cacacc310b65b43e7e2de89e7722291dea6a4.tar.gz cpython-2d7cacacc310b65b43e7e2de89e7722291dea6a4.tar.bz2 |
bpo-20504 : in cgi.py, fix bug when a multipart/form-data request has… (#10638)
* bpo-20504 : in cgi.py, fix bug when a multipart/form-data request has no content-length header
* Add Misc/NEWS.d/next file.
* Add rst formatting for NEWS.d/next file
* Reaplce assert by self.assertEqual
Diffstat (limited to 'Misc/NEWS.d')
-rw-r--r-- | Misc/NEWS.d/next/Library/2018-11-21-18-05-50.bpo-20504.kG0ub5.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2018-11-21-18-05-50.bpo-20504.kG0ub5.rst b/Misc/NEWS.d/next/Library/2018-11-21-18-05-50.bpo-20504.kG0ub5.rst new file mode 100644 index 0000000..726329a --- /dev/null +++ b/Misc/NEWS.d/next/Library/2018-11-21-18-05-50.bpo-20504.kG0ub5.rst @@ -0,0 +1,2 @@ +Fixes a bug in :mod:`cgi` module when a multipart/form-data request has no +`Content-Length` header. |