mirror of
https://github.com/python/cpython.git
synced 2025-11-01 22:21:35 +00:00
Replace non-breaking spaces with normal spaces (#130116)
Using normal spaces in place of non-breaking spaces.
This commit is contained in:
parent
a7d41a8947
commit
798f8d3ea9
13 changed files with 14 additions and 14 deletions
|
|
@ -1386,7 +1386,7 @@ def test_resize(self):
|
|||
self.assertIsNone(ba.resize(10))
|
||||
self.assertEqual(ba, bytearray(b'\0' * 10))
|
||||
|
||||
# Subclass
|
||||
# Subclass
|
||||
ba = ByteArraySubclass(b'abcdef')
|
||||
self.assertIsNone(ba.resize(3))
|
||||
self.assertEqual(ba, bytearray(b'abc'))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue