8000 bpo-28764: mailbox.mbox: handle lines with non-ascii more graceful by flokli · Pull Request #23553 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content
< 8000 h1 class="gh-header-title mb-2 lh-condensed f1 mr-0 flex-auto wb-break-word"> bpo-28764: mailbox.mbox: handle lines with non-ascii more graceful #23553
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Lib/mailbox.py
Original file line number Diff line number Diff line change
Expand Up @@ -781,7 +781,7 @@ def get_message(self, key):
from_line = self._file.readline().replace(linesep, b'')
string = self._file.read(stop - self._file.tell())
msg = self._message_factory(string.replace(linesep, b'\n'))
msg.set_from(from_line[5:].decode('ascii'))
msg.set_from(from_line[5:].decode('ascii', errors='replace'))
return msg

def get_string(self, key, from_=False):
Expand Down
0