diff options
author | Raymond Hettinger <rhettinger@users.noreply.github.com> | 2019-03-25 00:23:39 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-03-25 00:23:39 -0700 |
commit | 9dcc095f45278eed465f54f324327d0375d73b19 (patch) | |
tree | 699471d6e7dea41e6c66811607fa14490d09e9d1 /Lib/pydoc.py | |
parent | 62be33870e2f8517314bf9c7275548e799296f7e (diff) | |
download | cpython-git-9dcc095f45278eed465f54f324327d0375d73b19.tar.gz |
Fix line ending (GH-12531)
Diffstat (limited to 'Lib/pydoc.py')
-rw-r--r-- | Lib/pydoc.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/pydoc.py b/Lib/pydoc.py index 2f570e4dc5..0cf3d33596 100644 --- a/Lib/pydoc.py +++ b/Lib/pydoc.py @@ -886,7 +886,7 @@ class HTMLDoc(Doc): lambda t: t[1] == 'class method') attrs = spill('Static methods %s' % tag, attrs, lambda t: t[1] == 'static method') - attrs = spilldescriptors("Readonly properties %s:\n" % tag, attrs, + attrs = spilldescriptors("Readonly properties %s" % tag, attrs, lambda t: t[1] == 'readonly property') attrs = spilldescriptors('Data descriptors %s' % tag, attrs, lambda t: t[1] == 'data descriptor') |