diff options
author | Martin v. Löwis <martin@v.loewis.de> | 2004-08-22 16:08:04 +0000 |
---|---|---|
committer | Martin v. Löwis <martin@v.loewis.de> | 2004-08-22 16:08:04 +0000 |
commit | aa1f7e3b02bdad2ef489489c54a86bf56a0fbbae (patch) | |
tree | 9b4867705962ba5847b8a8eae1ccd143a1113b56 /Lib/pydoc.py | |
parent | 4f6a814ae0221d0f44ae406558c208000b65bbd1 (diff) | |
download | cpython-aa1f7e3b02bdad2ef489489c54a86bf56a0fbbae.tar.gz |
Patch #1009389: Make __credits__ a Unicode object.
Diffstat (limited to 'Lib/pydoc.py')
-rwxr-xr-x | Lib/pydoc.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/pydoc.py b/Lib/pydoc.py index 12ae27795c..c6a84db110 100755 --- a/Lib/pydoc.py +++ b/Lib/pydoc.py @@ -37,7 +37,7 @@ Reference Manual pages. __author__ = "Ka-Ping Yee <ping@lfw.org>" __date__ = "26 February 2001" __version__ = "$Revision$" -__credits__ = """Guido van Rossum, for an excellent programming language. +__credits__ = u"""Guido van Rossum, for an excellent programming language. Tommy Burnette, the original creator of manpy. Paul Prescod, for all his work on onlinehelp. Richard Chamberlain, for the first implementation of textdoc. |