diff options
author | Éric Araujo <merwok@netwok.org> | 2011-09-10 22:43:20 (GMT) |
---|---|---|
committer | Éric Araujo <merwok@netwok.org> | 2011-09-10 22:43:20 (GMT) |
commit | 647ef8cd68e97bf7ae2b7bc546e1fc2ce6a2988d (patch) | |
tree | 04e37ba9f9b6db113b4fe8f7d4c0891dba2c65d0 /Lib/pydoc.py | |
parent | 13e8c8e7216ff52b92d9ba51125b939c021e26d4 (diff) | |
download | cpython-647ef8cd68e97bf7ae2b7bc546e1fc2ce6a2988d.zip cpython-647ef8cd68e97bf7ae2b7bc546e1fc2ce6a2988d.tar.gz cpython-647ef8cd68e97bf7ae2b7bc546e1fc2ce6a2988d.tar.bz2 |
Wrap pydoc output under 80 characters
Diffstat (limited to 'Lib/pydoc.py')
-rwxr-xr-x | Lib/pydoc.py | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/Lib/pydoc.py b/Lib/pydoc.py index 8e2e47b..1a5db1a 100755 --- a/Lib/pydoc.py +++ b/Lib/pydoc.py @@ -1044,10 +1044,11 @@ class TextDoc(Doc): if docloc is not None: result = result + self.section('MODULE REFERENCE', docloc + """ -The following documentation is automatically generated from the Python source -files. It may be incomplete, incorrect or include features that are considered -implementation detail and may vary between Python implementations. When in -doubt, consult the module reference at the location listed above. +The following documentation is automatically generated from the Python +source files. It may be incomplete, incorrect or include features that +are considered implementation detail and may vary between Python +implementations. When in doubt, consult the module reference at the +location listed above. """) if desc: |