mirror of
https://github.com/python/cpython.git
synced 2025-08-04 00:48:58 +00:00
Make gettext work with strict str/bytes.
This commit is contained in:
parent
83800a6578
commit
9600f93db6
1 changed files with 3 additions and 3 deletions
|
@ -292,7 +292,7 @@ class GNUTranslations(NullTranslations):
|
|||
if mlen == 0:
|
||||
# Catalog description
|
||||
lastk = k = None
|
||||
for b_item in tmsg.split(os.linesep):
|
||||
for b_item in tmsg.split(os.linesep.encode("ascii")):
|
||||
item = str(b_item).strip()
|
||||
if not item:
|
||||
continue
|
||||
|
@ -321,8 +321,8 @@ class GNUTranslations(NullTranslations):
|
|||
# if the Unicode conversion fails.
|
||||
if b'\x00' in msg:
|
||||
# Plural forms
|
||||
msgid1, msgid2 = msg.split('\x00')
|
||||
tmsg = tmsg.split('\x00')
|
||||
msgid1, msgid2 = msg.split(b'\x00')
|
||||
tmsg = tmsg.split(b'\x00')
|
||||
if self._charset:
|
||||
msgid1 = str(msgid1, self._charset)
|
||||
tmsg = [str(x, self._charset) for x in tmsg]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue