Changes between Version 40 and Version 41 of Ticket #23919


Ignore:
Timestamp:
Jan 18, 2017, 4:07:41 PM (7 years ago)
Author:
Claude Paroz
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #23919 – Description

    v40 v41  
    22
    33* `django.core.mail.message.make_msgid()` #23905
    4 * `django.dispatch.weakref_backports`
     4* ~~`django.dispatch.weakref_backports`~~
    55* `django.http.cookie` workarounds
    66* `django.utils.2to3_fixes`
    77* `django.utils.decorators.ContextDecorator`
    88* `django.utils.encoding`
    9  * `@python_2_unicode_compatible`
    10  * force/smart _unicode
     9 * ~~`@python_2_unicode_compatible`~~
     10 * ~~force/smart _unicode~~
    1111 * either force/smart _text or force/smart _str
    1212* `django.utils.html_parser.use_workaround`
    1313* `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.
    1414* `django.utils.lru_cache` - [https://github.com/django/django/pull/7877 PR 7877]
    15 * `django.utils.six`
    16 * `from __future__ import unicode_literals`
     15* `django.utils.six` - Remaining: [https://github.com/django/django/pull/7878 PR 7878]
     16* ~~`from __future__ import unicode_literals`~~
    1717* `str()` stuff for environment variables, e.g. 0bfb53866199f366ed140d49938fd185e5898156
    1818* Inheriting from `object` in `django.core.servers.basehttp` (and perhaps other places) ala 4ee06ec3fc8e94d164afbd2f9c880c60c658a9ac
     
    2222* Support for pysqlite (doesn't support Python 3)
    2323* Replace `super(ClassName, self)` with `super()`
    24 * Remove `# -*- coding: utf-8 -*-` source file encoding (that's the default on Python 3)
     24* ~~Remove `# -*- coding: utf-8 -*-` source file encoding~~ (that's the default on Python 3)
    2525* Evaluate replacement of custom `__del__` methods by [https://docs.python.org/3/library/weakref.html#weakref.finalize weakref.finalize]
    2626* Remove `__ne__` from objects already defining a `__eq__` - [https://github.com/django/django/pull/7877 PR 7877]
     
    2929* `django.test.utils.reset_warning_registry()`
    3030* Replace `errno` checks by `IOError` subclasses defined by [https://www.python.org/dev/peps/pep-3151/ PEP 3151]
    31 * `django.utils.glob`
     31* ~~`django.utils.glob`~~
    3232* `django.utils.cookies.SimpleCookie`
    3333* `django.test.mock`
Back to Top