From 667a13bf2a6a47b84cd63ef82e49ae26fc9529eb Mon Sep 17 00:00:00 2001 From: Nadeem Vawda Date: Sun, 23 Sep 2012 18:08:57 +0200 Subject: [PATCH] Fix indentation of examples in lzma module documentation. --- Doc/library/lzma.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Doc/library/lzma.rst b/Doc/library/lzma.rst index 402fae203c1..4c637db1e43 100644 --- a/Doc/library/lzma.rst +++ b/Doc/library/lzma.rst @@ -336,14 +336,14 @@ Reading in a compressed file:: import lzma with lzma.LZMAFile("file.xz") as f: - file_content = f.read() + file_content = f.read() Creating a compressed file:: import lzma data = b"Insert Data Here" with lzma.LZMAFile("file.xz", "w") as f: - f.write(data) + f.write(data) Compressing data in memory::