New submission from Terry J. Reedy <tjre...@udel.edu>:

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.

----------
messages: 319156
nosy: ezio.melotti, terry.reedy
priority: normal
severity: normal
status: open
title: Update overdue 'Deprecated ... removed in 3.x' messages

_______________________________________
Python tracker <rep...@bugs.python.org>
<https://bugs.python.org/issue33813>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to