This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author terry.reedy
Recipients ezio.melotti, terry.reedy
Date 2018-06-09.16:46:24
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1528562784.89.0.592728768989.issue33813@psf.upfronthosting.co.za>
In-reply-to
Content
Reported on python-list by Vincent Vande Vivre.
"""
In Python-3.7.0b5 we can find at the end of html/parser.py:
    def unescape(self, s):
        warnings.warn('The unescape method is deprecated and will be removed '
                      'in 3.5, use html.unescape() instead.',
                      DeprecationWarning, stacklevel=2)
        return unescape(s)
"""
At minimum, /3.5/3.8 or after/  Since we often do not remove when we say we will, perhaps 'or after' should be routine.
History
Date User Action Args
2018-06-09 16:46:24terry.reedysetrecipients: + terry.reedy, ezio.melotti
2018-06-09 16:46:24terry.reedysetmessageid: <1528562784.89.0.592728768989.issue33813@psf.upfronthosting.co.za>
2018-06-09 16:46:24terry.reedylinkissue33813 messages
2018-06-09 16:46:24terry.reedycreate