diff options
author | Georg Brandl <georg@python.org> | 2009-04-10 08:28:28 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2009-04-10 08:28:28 (GMT) |
commit | e606694f027d880c3ce6e8a8385450bba2f4e15d (patch) | |
tree | 5ec0962e09c12c284ac4c5cef47a96cab4c3b803 /Lib | |
parent | c4f8b2456037108077000d614a9de8aed90c364b (diff) | |
download | cpython-e606694f027d880c3ce6e8a8385450bba2f4e15d.zip cpython-e606694f027d880c3ce6e8a8385450bba2f4e15d.tar.gz cpython-e606694f027d880c3ce6e8a8385450bba2f4e15d.tar.bz2 |
Merged revisions 71443 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r71443 | georg.brandl | 2009-04-10 10:20:23 +0200 (Fr, 10 Apr 2009) | 1 line
#5698: Fix casing of !DOCTYPE to conform to W3C specs.
........
Diffstat (limited to 'Lib')
-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 f68e72a..49c9aad 100755 --- a/Lib/pydoc.py +++ b/Lib/pydoc.py @@ -415,7 +415,7 @@ class HTMLDoc(Doc): def page(self, title, contents): """Format an HTML page.""" return ''' -<!doctype html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> +<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <html><head><title>Python: %s</title> </head><body bgcolor="#f0f0f8"> %s |