]> git.ipfire.org Git - thirdparty/Python/cpython.git/commit
#2830: add html.escape() helper and move cgi.escape() uses in the standard library...
authorGeorg Brandl <georg@python.org>
Fri, 15 Oct 2010 15:57:45 +0000 (15:57 +0000)
committerGeorg Brandl <georg@python.org>
Fri, 15 Oct 2010 15:57:45 +0000 (15:57 +0000)
commit1f7fffb308390d10a2c6a4ec624f18cfeef97aeb
tree65e2437904ba089004c69c77b49e5059623b83fb
parent70543acfa1bce2e5f448d8d0085df595bfa9a2f9
#2830: add html.escape() helper and move cgi.escape() uses in the standard library to it.  It defaults to quote=True and also escapes single quotes, which makes casual use safer.  The cgi.escape() interface is not touched, but emits a (silent) PendingDeprecationWarning.
Doc/howto/webservers.rst
Doc/library/cgi.rst
Doc/library/html.rst [new file with mode: 0644]
Doc/library/markup.rst
Lib/cgi.py
Lib/html/__init__.py
Lib/http/server.py
Lib/lib2to3/tests/test_util.py
Lib/test/test_html.py [new file with mode: 0644]
Lib/test/test_xml_etree.py
Misc/NEWS