https://github.com/python/cpython/commit/533578bd149ebd8d1ff11a47c026261b66a0586d commit: 533578bd149ebd8d1ff11a47c026261b66a0586d branch: 3.14 author: Miss Islington (bot) <[email protected]> committer: serhiy-storchaka <[email protected]> date: 2026-08-13T10:14:08Z summary:
[3.14] gh-89024: Document the 3.10 change in escaping the csv escapechar (GH-155067) (GH-155686) Add a versionchanged note for the escapechar itself being escaped. (cherry picked from commit a697faf45077f7fb24edf4f2f75b8aa09d873dcd) Co-authored-by: Serhiy Storchaka <[email protected]> files: M Doc/library/csv.rst diff --git a/Doc/library/csv.rst b/Doc/library/csv.rst index a21665f5fde741..28d668836a14fe 100644 --- a/Doc/library/csv.rst +++ b/Doc/library/csv.rst @@ -477,6 +477,10 @@ Dialects support the following attributes: On reading, the *escapechar* removes any special meaning from the following character. It defaults to :const:`None`, which disables escaping. + .. versionchanged:: 3.10 + Previously the *escapechar* itself was not escaped, + which lost it on reading. + .. versionchanged:: 3.11 An empty *escapechar* is not allowed. _______________________________________________ Python-checkins mailing list -- [email protected] To unsubscribe send an email to [email protected] https://mail.python.org/mailman3//lists/python-checkins.python.org Member address: [email protected]
