-
-
Notifications
You must be signed in to change notification settings - Fork 32.5k
Closed as duplicate of#132794
Labels
Description
cpython/Lib/email/_header_value_parser.py
Lines 782 to 784 in d0c32ae
try: | |
value = value.decode(charset, 'surrogateescape') | |
except (LookupError, UnicodeEncodeError): |
This is incorrect.
except (LookupError, UnicodeEncodeError):
Isn't this correct?
except (LookupError, UnicodeDecodeError):