diff options
author | R David Murray <rdmurray@bitdance.com> | 2013-06-29 22:42:24 (GMT) |
---|---|---|
committer | R David Murray <rdmurray@bitdance.com> | 2013-06-29 22:42:24 (GMT) |
commit | 634e076bbe08de3b5b4dfc2a1e10a20b64114ac1 (patch) | |
tree | 4f1ff4125ddc40af6ed8a17baa033d57937693f3 /Misc | |
parent | 06beaba785b78cc89986b447ef2bb7be4f7a7696 (diff) | |
parent | 925a3225708c40c8cd58a7475c5a6d3bd89db01d (diff) | |
download | cpython-634e076bbe08de3b5b4dfc2a1e10a20b64114ac1.zip cpython-634e076bbe08de3b5b4dfc2a1e10a20b64114ac1.tar.gz cpython-634e076bbe08de3b5b4dfc2a1e10a20b64114ac1.tar.bz2 |
Merge #18155: Regex-escape delimiter, in case it is a regex special char.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -135,6 +135,10 @@ Core and Builtins Library ------- +- Issue #18155: The csv module now correctly handles csv files that use + a delimter character that has a special meaning in regexes, instead of + throwing an exception. + - Issue #14360: encode_quopri can now be successfully used as an encoder when constructing a MIMEApplication object. @@ -156,7 +160,7 @@ Library lists all loaded CA certificates and cert_store_stats() returns amount of loaded X.509 certs, X.509 CA certs and CRLs. -- Issue #18167: cgi.FieldStorage no more fails to handle multipart/form-data +- Issue #18167: cgi.FieldStorage no longer fails to handle multipart/form-data when \r\n appears at end of 65535 bytes without other newlines. - Issue #18076: Introduce importlib.util.decode_source(). |