diff options
author | Alexander Belopolsky <alexander.belopolsky@gmail.com> | 2010-10-15 16:28:20 (GMT) |
---|---|---|
committer | Alexander Belopolsky <alexander.belopolsky@gmail.com> | 2010-10-15 16:28:20 (GMT) |
commit | e8f583244acd61d7ba43d0f98c06d57c25977039 (patch) | |
tree | 3cbdcba9f0121ade8913e07cd83c8ee324999de1 /Lib/pydoc.py | |
parent | c01537f742c3d2591016ef29bb20e3a26482be78 (diff) | |
download | cpython-e8f583244acd61d7ba43d0f98c06d57c25977039.zip cpython-e8f583244acd61d7ba43d0f98c06d57c25977039.tar.gz cpython-e8f583244acd61d7ba43d0f98c06d57c25977039.tar.bz2 |
Issue #9308: Removed redundant coding cookies. Added tests for
importing encoded modules that do not depend on specific stdlib
modules being encoded in a certain way.
Diffstat (limited to 'Lib/pydoc.py')
-rwxr-xr-x | Lib/pydoc.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Lib/pydoc.py b/Lib/pydoc.py index acee7b7..5e54468 100755 --- a/Lib/pydoc.py +++ b/Lib/pydoc.py @@ -1,5 +1,4 @@ #!/usr/bin/env python3 -# -*- coding: latin-1 -*- """Generate Python documentation in HTML or text for interactive use. In the Python interpreter, do "from pydoc import help" to provide online |