Changes between Version 40 and Version 41 of Ticket #23919
- Timestamp:
- Jan 18, 2017, 4:07:41 PM (8 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #23919 – Description
v40 v41 2 2 3 3 * `django.core.mail.message.make_msgid()` #23905 4 * `django.dispatch.weakref_backports`4 * ~~`django.dispatch.weakref_backports`~~ 5 5 * `django.http.cookie` workarounds 6 6 * `django.utils.2to3_fixes` 7 7 * `django.utils.decorators.ContextDecorator` 8 8 * `django.utils.encoding` 9 * `@python_2_unicode_compatible`10 * force/smart _unicode9 * ~~`@python_2_unicode_compatible`~~ 10 * ~~force/smart _unicode~~ 11 11 * either force/smart _text or force/smart _str 12 12 * `django.utils.html_parser.use_workaround` 13 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. 14 14 * `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`~~ 17 17 * `str()` stuff for environment variables, e.g. 0bfb53866199f366ed140d49938fd185e5898156 18 18 * Inheriting from `object` in `django.core.servers.basehttp` (and perhaps other places) ala 4ee06ec3fc8e94d164afbd2f9c880c60c658a9ac … … 22 22 * Support for pysqlite (doesn't support Python 3) 23 23 * 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) 25 25 * Evaluate replacement of custom `__del__` methods by [https://docs.python.org/3/library/weakref.html#weakref.finalize weakref.finalize] 26 26 * Remove `__ne__` from objects already defining a `__eq__` - [https://github.com/django/django/pull/7877 PR 7877] … … 29 29 * `django.test.utils.reset_warning_registry()` 30 30 * 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`~~ 32 32 * `django.utils.cookies.SimpleCookie` 33 33 * `django.test.mock`