summaryrefslogtreecommitdiff
path: root/Lib/pydoc.py
diff options
context:
space:
mode:
authorMartin v. Löwis <martin@v.loewis.de>2004-08-22 16:08:04 +0000
committerMartin v. Löwis <martin@v.loewis.de>2004-08-22 16:08:04 +0000
commitac37f3d001020fb7b1c211ad4ddb309705551a2c (patch)
treedfed6898eb21a294efa53412732d6cf2989919a2 /Lib/pydoc.py
parent12237b3a19336636ae40f687fab2e3fdd7c35b4b (diff)
downloadcpython-git-ac37f3d001020fb7b1c211ad4ddb309705551a2c.tar.gz
Patch #1009389: Make __credits__ a Unicode object.
Diffstat (limited to 'Lib/pydoc.py')
-rwxr-xr-xLib/pydoc.py2
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.