From 3dd8cbea9bf4bc4e28eee32dfb3a1bcfba495921 Mon Sep 17 00:00:00 2001 From: Jesus Cea Date: Mon, 22 Oct 2012 13:14:20 +0200 Subject: [PATCH] Closes #16294: 8 space indent in tutorial --- Doc/tutorial/stdlib2.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Doc/tutorial/stdlib2.rst b/Doc/tutorial/stdlib2.rst index a5ba472502..1b0e856a67 100644 --- a/Doc/tutorial/stdlib2.rst +++ b/Doc/tutorial/stdlib2.rst @@ -257,9 +257,9 @@ applications include caching objects that are expensive to create:: >>> 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() -- 2.50.1