mirror of
https://github.com/python/cpython.git
synced 2025-12-04 00:30:19 +00:00
#12515: email now registers a defect if the MIME end boundary is missing.
This commit also restores the news item for 167256 that it looks like Terry inadvertently deleted. (Either that, or I don't understand now merging works...which is equally possible.)
This commit is contained in:
parent
d0a0e8e070
commit
7ef3ff3f2e
5 changed files with 59 additions and 3 deletions
|
|
@ -42,6 +42,9 @@ class NoBoundaryInMultipartDefect(MessageDefect):
|
|||
class StartBoundaryNotFoundDefect(MessageDefect):
|
||||
"""The claimed start boundary was never found."""
|
||||
|
||||
class CloseBoundaryNotFoundDefect(MessageDefect):
|
||||
"""A start boundary was found, but not the corresponding close boundary."""
|
||||
|
||||
class FirstHeaderLineIsContinuationDefect(MessageDefect):
|
||||
"""A message had a continuation line as its first header line."""
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue