commit | 3dd8cbea9bf4bc4e28eee32dfb3a1bcfba495921 | [log] [tgz] |
---|---|---|
author | Jesus Cea <jcea@jcea.es> | Mon Oct 22 13:14:20 2012 +0200 |
committer | Jesus Cea <jcea@jcea.es> | Mon Oct 22 13:14:20 2012 +0200 |
tree | eb529cc5b6a8d17c47945066ff5d1f62dfe60b12 | |
parent | 45dba1da320c37f35a55e5b4873e5e9573a37711 [diff] [blame] |
Closes #16294: 8 space indent in tutorial
diff --git a/Doc/tutorial/stdlib2.rst b/Doc/tutorial/stdlib2.rst index a5ba472..1b0e856 100644 --- a/Doc/tutorial/stdlib2.rst +++ b/Doc/tutorial/stdlib2.rst
@@ -257,9 +257,9 @@ >>> import weakref, gc >>> class A: ... def __init__(self, value): - ... self.value = value + ... self.value = value ... def __repr__(self): - ... return str(self.value) + ... return str(self.value) ... >>> a = A(10) # create a reference >>> d = weakref.WeakValueDictionary()