[Python-checkins] r84002 - in python/branches/release31-maint: Doc/library/cgi.rst

eric.araujo python-checkins at python.org
Sat Aug 14 07:04:34 CEST 2010


Author: eric.araujo
Date: Sat Aug 14 07:04:34 2010
New Revision: 84002

Log:
Merged revisions 83999,84001 via svnmerge from 
svn+ssh://pythondev@svn.python.org/python/branches/py3k

........
  r83999 | eric.araujo | 2010-08-14 06:55:45 +0200 (sam., 14 août 2010) | 2 lines
  
  Fix reference (follow-up to #9061)
........
  r84001 | eric.araujo | 2010-08-14 07:00:18 +0200 (sam., 14 août 2010) | 2 lines
  
  Oops, fix typo
........


Modified:
   python/branches/release31-maint/   (props changed)
   python/branches/release31-maint/Doc/library/cgi.rst

Modified: python/branches/release31-maint/Doc/library/cgi.rst
==============================================================================
--- python/branches/release31-maint/Doc/library/cgi.rst	(original)
+++ python/branches/release31-maint/Doc/library/cgi.rst	Sat Aug 14 07:04:34 2010
@@ -327,7 +327,8 @@
    character (``'"'``) is also translated; this helps for inclusion in an HTML
    attribute value, as in ``<A HREF="...">``.  If the value to be quoted might
    include single- or double-quote characters, or both, consider using the
-   :func:`quoteattr` function in the :mod:`xml.sax.saxutils` module instead.
+   :func:`~xml.sax.saxutils.quoteattr` function in the :mod:`xml.sax.saxutils`
+   module instead.
 
 
 .. _cgi-security:


More information about the Python-checkins mailing list