aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/tools/python3/Lib/email/errors.py
diff options
context:
space:
mode:
authorshadchin <shadchin@yandex-team.com>2024-08-17 21:51:59 +0300
committershadchin <shadchin@yandex-team.com>2024-08-17 22:04:51 +0300
commitee9edbd8878888bafcd0eeb3b528f3ec4311560b (patch)
treed54d8138e50a446904f10a2092719be86af011b7 /contrib/tools/python3/Lib/email/errors.py
parent72cbe4bad58add0912623ba51351ff1db8587249 (diff)
downloadydb-ee9edbd8878888bafcd0eeb3b528f3ec4311560b.tar.gz
Update Python 3 to 3.12.5
https://docs.python.org/release/3.12.5/whatsnew/changelog.html#python-3-12-5-final de86cdeacd3a8653b9ec36e87975886fafcf6dc2
Diffstat (limited to 'contrib/tools/python3/Lib/email/errors.py')
-rw-r--r--contrib/tools/python3/Lib/email/errors.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/contrib/tools/python3/Lib/email/errors.py b/contrib/tools/python3/Lib/email/errors.py
index 3ad00565549..02aa5eced6a 100644
--- a/contrib/tools/python3/Lib/email/errors.py
+++ b/contrib/tools/python3/Lib/email/errors.py
@@ -29,6 +29,10 @@ class CharsetError(MessageError):
"""An illegal charset was given."""
+class HeaderWriteError(MessageError):
+ """Error while writing headers."""
+
+
# These are parsing defects which the parser was able to work around.
class MessageDefect(ValueError):
"""Base class for a message defect."""