mirror of https://github.com/python/cpython
Issue #29073: Added a test for bytearray formatting with null byte.
This commit is contained in:
commit
d4313742fd
|
@ -390,6 +390,13 @@ class FormatTest(unittest.TestCase):
|
|||
else:
|
||||
raise TestFailed('"%*d"%(maxsize, -127) should fail')
|
||||
|
||||
def test_nul(self):
|
||||
# test the null character
|
||||
testcommon("a\0b", (), 'a\0b')
|
||||
testcommon("a%cb", (0,), 'a\0b')
|
||||
testformat("a%sb", ('c\0d',), 'ac\0db')
|
||||
testcommon(b"a%sb", (b'c\0d',), b'ac\0db')
|
||||
|
||||
def test_non_ascii(self):
|
||||
testformat("\u20ac=%f", (1.0,), "\u20ac=1.000000")
|
||||
|
||||
|
|
Loading…
Reference in New Issue