Kaydet (Commit) 667a13bf authored tarafından Nadeem Vawda's avatar Nadeem Vawda

Fix indentation of examples in lzma module documentation.

üst fd0ddab9
......@@ -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::
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment