Issue #5391: mmap.read_byte() should return unsigned value [0, 255]

instead of signed value [-127, 128].
This commit is contained in:
Hirokazu Yamamoto 2010-11-04 12:09:08 +00:00
parent 95c0700eff
commit 3cdd5cb959
2 changed files with 10 additions and 1 deletions

View file

@ -534,6 +534,15 @@ class MmapTests(unittest.TestCase):
m.seek(8)
self.assertRaises(ValueError, m.write, b"bar")
def test_non_ascii_byte(self):
for b in (129, 200, 255): # > 128
m = mmap.mmap(-1, 1)
m.write_byte(b)
self.assertEquals(m[0], b)
m.seek(0)
self.assertEquals(m.read_byte(), b)
m.close()
if os.name == 'nt':
def test_tagname(self):
data1 = b"0123456789"