diff options
author | Georg Brandl <georg@python.org> | 2009-04-10 08:20:23 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2009-04-10 08:20:23 (GMT) |
commit | e01970686240266dbe9a559451cb8643a0bddcbb (patch) | |
tree | 59bb32b560dbb77a8fa2ba8d1d20d6529fc11b9e /Lib | |
parent | 5623e50d1a12389c05d59e2a6de9de3bf6bc445c (diff) | |
download | cpython-e01970686240266dbe9a559451cb8643a0bddcbb.zip cpython-e01970686240266dbe9a559451cb8643a0bddcbb.tar.gz cpython-e01970686240266dbe9a559451cb8643a0bddcbb.tar.bz2 |
#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 dda0208..3afb981 100755 --- a/Lib/pydoc.py +++ b/Lib/pydoc.py @@ -422,7 +422,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 |