summaryrefslogtreecommitdiff
path: root/Lib/test/test_lzma.py
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2013-02-08 11:24:55 +0200
committerSerhiy Storchaka <storchaka@gmail.com>2013-02-08 11:24:55 +0200
commit58d78ebdec3944876b51a9624a9398e62acc4ab6 (patch)
tree52c6ab7c296da27192963ea971a74a6da47accc0 /Lib/test/test_lzma.py
parenta04a163fa38b423baf9680a3680b802ab1beb495 (diff)
parentff5bc6cd351ab40e1027702bc147902e948bc9f7 (diff)
downloadcpython-58d78ebdec3944876b51a9624a9398e62acc4ab6.tar.gz
Fix accidental non-breakable spaces (U+00A0).
Diffstat (limited to 'Lib/test/test_lzma.py')
-rw-r--r--Lib/test/test_lzma.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_lzma.py b/Lib/test/test_lzma.py
index 4669ee2651..20d85828e6 100644
--- a/Lib/test/test_lzma.py
+++ b/Lib/test/test_lzma.py
@@ -671,7 +671,7 @@ class FileTestCase(unittest.TestCase):
def test_read_truncated(self):
# Drop stream footer: CRC (4 bytes), index size (4 bytes),
- # flagsĀ (2 bytes) and magic number (2 bytes).
+ # flags (2 bytes) and magic number (2 bytes).
truncated = COMPRESSED_XZ[:-12]
with LZMAFile(BytesIO(truncated)) as f:
self.assertRaises(EOFError, f.read)