mirror of
https://github.com/python/cpython.git
synced 2025-10-22 06:32:43 +00:00
Issue #15379: Fix passing of non-BMP characters as integers for the charmap decoder (already working as unicode strings).
Patch by Serhiy Storchaka.
This commit is contained in:
commit
a1f7655fa7
3 changed files with 123 additions and 3 deletions
|
@ -1692,6 +1692,15 @@ class CharmapTest(unittest.TestCase):
|
||||||
("abc", 3)
|
("abc", 3)
|
||||||
)
|
)
|
||||||
|
|
||||||
|
self.assertEqual(
|
||||||
|
codecs.charmap_decode(b"\x00\x01\x02", "strict", "\U0010FFFFbc"),
|
||||||
|
("\U0010FFFFbc", 3)
|
||||||
|
)
|
||||||
|
|
||||||
|
self.assertRaises(UnicodeDecodeError,
|
||||||
|
codecs.charmap_decode, b"\x00\x01\x02", "strict", "ab"
|
||||||
|
)
|
||||||
|
|
||||||
self.assertEqual(
|
self.assertEqual(
|
||||||
codecs.charmap_decode(b"\x00\x01\x02", "replace", "ab"),
|
codecs.charmap_decode(b"\x00\x01\x02", "replace", "ab"),
|
||||||
("ab\ufffd", 3)
|
("ab\ufffd", 3)
|
||||||
|
@ -1718,6 +1727,113 @@ class CharmapTest(unittest.TestCase):
|
||||||
("", len(allbytes))
|
("", len(allbytes))
|
||||||
)
|
)
|
||||||
|
|
||||||
|
def test_decode_with_int2str_map(self):
|
||||||
|
self.assertEqual(
|
||||||
|
codecs.charmap_decode(b"\x00\x01\x02", "strict",
|
||||||
|
{0: 'a', 1: 'b', 2: 'c'}),
|
||||||
|
("abc", 3)
|
||||||
|
)
|
||||||
|
|
||||||
|
self.assertEqual(
|
||||||
|
codecs.charmap_decode(b"\x00\x01\x02", "strict",
|
||||||
|
{0: 'Aa', 1: 'Bb', 2: 'Cc'}),
|
||||||
|
("AaBbCc", 3)
|
||||||
|
)
|
||||||
|
|
||||||
|
self.assertEqual(
|
||||||
|
codecs.charmap_decode(b"\x00\x01\x02", "strict",
|
||||||
|
{0: '\U0010FFFF', 1: 'b', 2: 'c'}),
|
||||||
|
("\U0010FFFFbc", 3)
|
||||||
|
)
|
||||||
|
|
||||||
|
self.assertEqual(
|
||||||
|
codecs.charmap_decode(b"\x00\x01\x02", "strict",
|
||||||
|
{0: 'a', 1: 'b', 2: ''}),
|
||||||
|
("ab", 3)
|
||||||
|
)
|
||||||
|
|
||||||
|
self.assertRaises(UnicodeDecodeError,
|
||||||
|
codecs.charmap_decode, b"\x00\x01\x02", "strict",
|
||||||
|
{0: 'a', 1: 'b'}
|
||||||
|
)
|
||||||
|
|
||||||
|
self.assertEqual(
|
||||||
|
codecs.charmap_decode(b"\x00\x01\x02", "replace",
|
||||||
|
{0: 'a', 1: 'b'}),
|
||||||
|
("ab\ufffd", 3)
|
||||||
|
)
|
||||||
|
|
||||||
|
self.assertEqual(
|
||||||
|
codecs.charmap_decode(b"\x00\x01\x02", "replace",
|
||||||
|
{0: 'a', 1: 'b', 2: None}),
|
||||||
|
("ab\ufffd", 3)
|
||||||
|
)
|
||||||
|
|
||||||
|
self.assertEqual(
|
||||||
|
codecs.charmap_decode(b"\x00\x01\x02", "ignore",
|
||||||
|
{0: 'a', 1: 'b'}),
|
||||||
|
("ab", 3)
|
||||||
|
)
|
||||||
|
|
||||||
|
self.assertEqual(
|
||||||
|
codecs.charmap_decode(b"\x00\x01\x02", "ignore",
|
||||||
|
{0: 'a', 1: 'b', 2: None}),
|
||||||
|
("ab", 3)
|
||||||
|
)
|
||||||
|
|
||||||
|
allbytes = bytes(range(256))
|
||||||
|
self.assertEqual(
|
||||||
|
codecs.charmap_decode(allbytes, "ignore", {}),
|
||||||
|
("", len(allbytes))
|
||||||
|
)
|
||||||
|
|
||||||
|
def test_decode_with_int2int_map(self):
|
||||||
|
a = ord('a')
|
||||||
|
b = ord('b')
|
||||||
|
c = ord('c')
|
||||||
|
|
||||||
|
self.assertEqual(
|
||||||
|
codecs.charmap_decode(b"\x00\x01\x02", "strict",
|
||||||
|
{0: a, 1: b, 2: c}),
|
||||||
|
("abc", 3)
|
||||||
|
)
|
||||||
|
|
||||||
|
# Issue #15379
|
||||||
|
self.assertEqual(
|
||||||
|
codecs.charmap_decode(b"\x00\x01\x02", "strict",
|
||||||
|
{0: 0x10FFFF, 1: b, 2: c}),
|
||||||
|
("\U0010FFFFbc", 3)
|
||||||
|
)
|
||||||
|
|
||||||
|
self.assertEqual(
|
||||||
|
codecs.charmap_decode(b"\x00\x01\x02", "strict",
|
||||||
|
{0: sys.maxunicode, 1: b, 2: c}),
|
||||||
|
(chr(sys.maxunicode) + "bc", 3)
|
||||||
|
)
|
||||||
|
|
||||||
|
self.assertRaises(TypeError,
|
||||||
|
codecs.charmap_decode, b"\x00\x01\x02", "strict",
|
||||||
|
{0: sys.maxunicode + 1, 1: b, 2: c}
|
||||||
|
)
|
||||||
|
|
||||||
|
self.assertRaises(UnicodeDecodeError,
|
||||||
|
codecs.charmap_decode, b"\x00\x01\x02", "strict",
|
||||||
|
{0: a, 1: b},
|
||||||
|
)
|
||||||
|
|
||||||
|
self.assertEqual(
|
||||||
|
codecs.charmap_decode(b"\x00\x01\x02", "replace",
|
||||||
|
{0: a, 1: b}),
|
||||||
|
("ab\ufffd", 3)
|
||||||
|
)
|
||||||
|
|
||||||
|
self.assertEqual(
|
||||||
|
codecs.charmap_decode(b"\x00\x01\x02", "ignore",
|
||||||
|
{0: a, 1: b}),
|
||||||
|
("ab", 3)
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
class WithStmtTest(unittest.TestCase):
|
class WithStmtTest(unittest.TestCase):
|
||||||
def test_encodedfile(self):
|
def test_encodedfile(self):
|
||||||
f = io.BytesIO(b"\xc3\xbc")
|
f = io.BytesIO(b"\xc3\xbc")
|
||||||
|
|
|
@ -10,6 +10,9 @@ What's New in Python 3.3.1
|
||||||
Core and Builtins
|
Core and Builtins
|
||||||
-----------------
|
-----------------
|
||||||
|
|
||||||
|
- Issue #15379: Fix passing of non-BMP characters as integers for the charmap
|
||||||
|
decoder (already working as unicode strings). Patch by Serhiy Storchaka.
|
||||||
|
|
||||||
- Issue #15144: Fix possible integer overflow when handling pointers as
|
- Issue #15144: Fix possible integer overflow when handling pointers as
|
||||||
integer values, by using Py_uintptr_t instead of size_t. Patch by
|
integer values, by using Py_uintptr_t instead of size_t. Patch by
|
||||||
Serhiy Storchaka.
|
Serhiy Storchaka.
|
||||||
|
|
|
@ -7525,9 +7525,10 @@ Error:
|
||||||
/* Apply mapping */
|
/* Apply mapping */
|
||||||
if (PyLong_Check(x)) {
|
if (PyLong_Check(x)) {
|
||||||
long value = PyLong_AS_LONG(x);
|
long value = PyLong_AS_LONG(x);
|
||||||
if (value < 0 || value > 65535) {
|
if (value < 0 || value > MAX_UNICODE) {
|
||||||
PyErr_SetString(PyExc_TypeError,
|
PyErr_Format(PyExc_TypeError,
|
||||||
"character mapping must be in range(65536)");
|
"character mapping must be in range(0x%lx)",
|
||||||
|
(unsigned long)MAX_UNICODE + 1);
|
||||||
Py_DECREF(x);
|
Py_DECREF(x);
|
||||||
goto onError;
|
goto onError;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue