Closed kevinmarsh closed 3 years ago
I was just trying out the Django 4.0 alpha 1 in a project and force_text has been removed in Django 4.0 (was deprecated in 3.0).
force_text
In Django 3.2 it was just an alias to force_str and in older Django's like 1.11 (which still needed to support Python2) it was doing a bit more.
force_str
Nice, thank you :)
I was just trying out the Django 4.0 alpha 1 in a project and
force_text
has been removed in Django 4.0 (was deprecated in 3.0).In Django 3.2 it was just an alias to
force_str
and in older Django's like 1.11 (which still needed to support Python2) it was doing a bit more.