Refs #27753 -- Deprecated django.utils.text.unescape_entities().

The function was undocumented and only required for compatibility with
Python 2.

Code should use Python's html.unescape() that was added in Python 3.4.
This commit is contained in:
Jon Dufresne 2019-04-24 06:10:28 -07:00 committed by Mariusz Felisiak
parent 6b736dd074
commit b915b9f10f
5 changed files with 26 additions and 3 deletions

View file

@ -30,6 +30,8 @@ details on these changes.
* ``alias=None`` will be required in the signature of
``django.db.models.Expression.get_group_by_cols()`` subclasses.
* ``django.utils.text.unescape_entities()`` will be removed.
.. _deprecation-removed-in-3.1:
3.1