[issue12938] html.escape docstring does not mention single quotes (')

2011-09-18 Thread Senthil Kumaran
Senthil Kumaran added the comment: This is fixed in all revisions. -- resolution: -> fixed stage: -> committed/rejected status: open -> closed ___ Python tracker ___ _

[issue12938] html.escape docstring does not mention single quotes (')

2011-09-12 Thread Roundup Robot
Roundup Robot added the comment: New changeset bc5b96c92770 by Senthil Kumaran in branch '3.2': Fix issue12938 - Update the docstring of html.escape. Include the information on single quote. http://hg.python.org/cpython/rev/bc5b96c92770 -- nosy: +python-dev ___

[issue12938] html.escape docstring does not mention single quotes (')

2011-09-12 Thread Senthil Kumaran
Senthil Kumaran added the comment: The single quote escape was added due to Issue9061 and Issue2830. Since it was included deliberately due to above raised issues, it is best to document it, instead of removing it. -- ___ Python tracker

[issue12938] html.escape docstring does not mention single quotes (')

2011-09-12 Thread Senthil Kumaran
Senthil Kumaran added the comment: Yes, single quotes should not escaped in the CGI escape. We should remove that from the table. -- nosy: +orsenthil ___ Python tracker ___ ___

[issue12938] html.escape docstring does not mention single quotes (')

2011-09-08 Thread zvin
zvin added the comment: Or maybe instead of updating the docstring, we should remove the single quote (') from _escape_map_full. cgi.escape did not escaped the single quotes (') and if you use it now, it says: "PendingDeprecationWarning: cgi.escape is deprecated, use html.escape instead" --

[issue12938] html.escape docstring does not mention single quotes (')

2011-09-08 Thread zvin
Changes by zvin : -- title: html.escape does not mention single quotes (') -> html.escape docstring does not mention single quotes (') ___ Python tracker ___ ___