diff options
author | Charles-François Natali <cf.natali@gmail.com> | 2013-10-21 14:46:34 +0200 |
---|---|---|
committer | Charles-François Natali <cf.natali@gmail.com> | 2013-10-21 14:46:34 +0200 |
commit | 1a82f7e6a56ab014d5e9035b613fd4e837da5103 (patch) | |
tree | 4376b0a13037dc746216db3fa1c1881068a0c1b0 /Lib/test/test_pydoc.py | |
parent | 6459025b24b4dd23c5d7c0c0881950be1b78e622 (diff) | |
download | cpython-git-1a82f7e6a56ab014d5e9035b613fd4e837da5103.tar.gz |
Fix test_pydoc failure introduced by 2f09a6980e1a (issue #19030).
Diffstat (limited to 'Lib/test/test_pydoc.py')
-rw-r--r-- | Lib/test/test_pydoc.py | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/Lib/test/test_pydoc.py b/Lib/test/test_pydoc.py index 3508763431..87e3e42b7b 100644 --- a/Lib/test/test_pydoc.py +++ b/Lib/test/test_pydoc.py @@ -214,18 +214,18 @@ Help on class DA in module %s: class DA(builtins.object) | Data descriptors defined here: - | + |\x20\x20 | __dict__ | dictionary for instance variables (if defined) - | + |\x20\x20 | __weakref__ | list of weak references to the object (if defined) - | + |\x20\x20 | ham - | + |\x20\x20 | ---------------------------------------------------------------------- | Data and other attributes inherited from Meta: - | + |\x20\x20 | ham = 'spam' """.strip() @@ -234,7 +234,7 @@ Help on class Class in module %s: class Class(builtins.object) | Data and other attributes inherited from Meta: - | + |\x20\x20 | LIFE = 42 """.strip() @@ -243,7 +243,7 @@ Help on class Class1 in module %s: class Class1(builtins.object) | Data and other attributes inherited from Meta1: - | + |\x20\x20 | one = 1 """.strip() @@ -255,19 +255,19 @@ class Class2(Class1) | Class2 | Class1 | builtins.object - | + |\x20\x20 | Data and other attributes inherited from Meta1: - | + |\x20\x20 | one = 1 - | + |\x20\x20 | ---------------------------------------------------------------------- | Data and other attributes inherited from Meta3: - | + |\x20\x20 | three = 3 - | + |\x20\x20 | ---------------------------------------------------------------------- | Data and other attributes inherited from Meta2: - | + |\x20\x20 | two = 2 """.strip() @@ -276,7 +276,7 @@ Help on class C in module %s: class C(builtins.object) | Data and other attributes defined here: - | + |\x20\x20 | here = 'present!' """.strip() |