Cleanups for when we drop Python 2 compatibility
— at Version 9
This is a tracking ticket of things that we can remove when we drop Python 2 compatibility (in a few years or so). Please edit the description of the ticket as you come across new items.
django.core.mail.message.make_msgid()
#23905
django.dispatch.weakref_backports
django.http.cookie
workarounds
django.utils.2to3_fixes
django.utils.decorators.ContextDecorator
django.utils.encoding
@python_2_unicode_compatible
- force/smart _unicode
- either force/smart _text or force/smart _str
django.utils.html_parser.use_workaround
django.utils.http
functions like urlquote_plus
-- I think the versions of these functions on Python 3 don't have the unicode characters bug we are working around.
django.utils.lru_cache
django.utils.six
- Change
inspect.getargspec()
(deprecated since 3.0) to inspect.getfullargspec()
from __future__ import unicode_literals
str()
stuff for environment variables, e.g. 0bfb53866199f366ed140d49938fd185e5898156
- Inheriting from
object
in django.core.servers.basehttp
(and perhaps other places) ala 4ee06ec3fc8e94d164afbd2f9c880c60c658a9ac
git grep 'long int'
(mostly docs)
Change History
(9)
Description: |
modified (diff)
|
Description: |
modified (diff)
|
Description: |
modified (diff)
|
Description: |
modified (diff)
|
Description: |
modified (diff)
|
Cc: |
cmawebsite@… added
|
Description: |
modified (diff)
|
Description: |
modified (diff)
|
Various
nonlocal
workarounds (example).