summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_lzma.py
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2013-02-08 09:24:55 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2013-02-08 09:24:55 (GMT)
commitd1938cdc16c9aacadc9bfaf15aaf423744519df0 (patch)
tree5e5ebe67435418aa64a5b4f6a587dc008903eb74 /Lib/test/test_lzma.py
parent1d824ec9b343be008e03443114e3e9b918aea0df (diff)
parent70ea7fa6e57b9a4529c19e15cfff66d8fcb58806 (diff)
downloadcpython-d1938cdc16c9aacadc9bfaf15aaf423744519df0.zip
cpython-d1938cdc16c9aacadc9bfaf15aaf423744519df0.tar.gz
cpython-d1938cdc16c9aacadc9bfaf15aaf423744519df0.tar.bz2
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 4669ee2..20d8582 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)