[Python-checkins] r71447 - in python/branches/release26-maint: Lib/pydoc.py

matthias.klose python-checkins at python.org
Fri Apr 10 14:38:09 CEST 2009


Author: matthias.klose
Date: Fri Apr 10 14:38:09 2009
New Revision: 71447

Log:
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.
........


Modified:
   python/branches/release26-maint/   (props changed)
   python/branches/release26-maint/Lib/pydoc.py

Modified: python/branches/release26-maint/Lib/pydoc.py
==============================================================================
--- python/branches/release26-maint/Lib/pydoc.py	(original)
+++ python/branches/release26-maint/Lib/pydoc.py	Fri Apr 10 14:38:09 2009
@@ -422,7 +422,7 @@
     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


More information about the Python-checkins mailing list