-
Notifications
You must be signed in to change notification settings - Fork 273
Open
Description
Originally reported by: Anonymous
In python 2.7 cgi.escape is used to encode htmlentities but in python 3.2 onward it's html.escape
Python 2.7
https://docs.python.org/2/library/cgi.html
Python 3.2
https://docs.python.org/3/library/html.html
- Bitbucket: https://bitbucket.org/gutworth/six/issue/159
mgedmin and jvanasco