diff -r 96b7e510cb25 Doc/tutorial/stdlib2.rst --- a/Doc/tutorial/stdlib2.rst Sun Oct 21 21:26:38 2012 +0200 +++ b/Doc/tutorial/stdlib2.rst Sun Oct 21 13:04:12 2012 -0700 @@ -259,9 +259,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()