Changes between Version 8 and Version 9 of Ticket #23919


Ignore:
Timestamp:
Jan 26, 2015, 11:24:25 AM (9 years ago)
Author:
Collin Anderson
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #23919 – Description

    v8 v9  
    11This 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.
    22
     3* `django.core.mail.message.make_msgid()` #23905
    34* `django.dispatch.weakref_backports`
     5* `django.http.cookie` workarounds
    46* `django.utils.2to3_fixes`
     7* `django.utils.decorators.ContextDecorator`
     8* `django.utils.encoding`
     9 * `@python_2_unicode_compatible`
     10 * force/smart _unicode
     11 * either force/smart _text or force/smart _str
     12* `django.utils.html_parser.use_workaround`
     13* `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.
    514* `django.utils.lru_cache`
    6 * `django.utils.html_parser.use_workaround`
    7 * `django.utils.decorators.ContextDecorator`
    815* `django.utils.six`
    916* Change `inspect.getargspec()` (deprecated since 3.0) to `inspect.getfullargspec()`
    10 * `@python_2_unicode_compatible`
    1117* `from __future__ import unicode_literals`
    12 * Lots of workarounds in `django.http.cookie`
    1318* `str()` stuff for environment variables, e.g. 0bfb53866199f366ed140d49938fd185e5898156
    14 * `django.core.mail.message.make_msgid()` #23905
    15 * Functions in `django.utils.http` like `urlquote_plus` -- I think the versions of these functions on Python 3 don't have the unicode characters bug we are working around.
    1619* Inheriting from `object` in `django.core.servers.basehttp` (and perhaps other places) ala 4ee06ec3fc8e94d164afbd2f9c880c60c658a9ac
    1720* `git grep 'long int'` (mostly docs)
Back to Top