diff options
author | R David Murray <rdmurray@bitdance.com> | 2013-03-20 02:41:47 (GMT) |
---|---|---|
committer | R David Murray <rdmurray@bitdance.com> | 2013-03-20 02:41:47 (GMT) |
commit | c7c42efb16612f66af266073937cffa99ad49a33 (patch) | |
tree | 2653077e3c508f41ac849282d53d801c1779f76a /Misc/NEWS | |
parent | 04cbe0c35b20c8379baf55cc5e152f88449e5202 (diff) | |
download | cpython-c7c42efb16612f66af266073937cffa99ad49a33.zip cpython-c7c42efb16612f66af266073937cffa99ad49a33.tar.gz cpython-c7c42efb16612f66af266073937cffa99ad49a33.tar.bz2 |
#15927: Fix cvs.reader parsing of escaped \r\n with quoting off.
This fix means that such values are correctly roundtripped, since
cvs.writer already does the correct escaping.
Patch by Michael Johnson.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r-- | Misc/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -289,6 +289,9 @@ Core and Builtins Library ------- +- Issue #15927: CVS now correctly parses escaped newlines and carriage + when parsing with quoting turned off. + - Issue #17467: add readline and readlines support to mock_open in unittest.mock. |