Changes between Version 79 and Version 87 of Ticket #23919
- Timestamp:
- Jan 26, 2017, 2:32:01 AM (8 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #23919 – Description
v79 v87 9 9 * ~~`@python_2_unicode_compatible`~~ 10 10 * ~~force/smart _unicode~~ 11 * either force/smart _text or force/smart _str 11 * either force/smart _text or force/smart _str [https://github.com/django/django/pull/7913 PR] 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. … … 23 23 * ~~In tests: `contextlib.closing(self.urlopen` (`contextlib.closing` no longer needed)~~ 24 24 * ~~Support for pysqlite (doesn't support Python 3)~~ 25 * Replace `super(ClassName, self)` with `super()`[https://github.com/django/django/pull/7905 PR]25 * ~~Replace `super(ClassName, self)` with `super()`~~ [https://github.com/django/django/pull/7905 PR] 26 26 * ~~Remove `# -*- coding: utf-8 -*-` source file encoding~~ (that's the default on Python 3) 27 27 * Evaluate replacement of custom `__del__` methods by [https://docs.python.org/3/library/weakref.html#weakref.finalize weakref.finalize] … … 30 30 * Remove Field.creation_counter (replace by metaclass `__prepare__` returning `OrderedDict()`, https://docs.python.org/3/reference/datamodel.html#preparing-the-class-namespace) 31 31 * ~~`django.test.utils.reset_warning_registry()`~~ 32 * Replace `errno` checks by `IOError` subclasses defined by [https://www.python.org/dev/peps/pep-3151/ PEP 3151]32 * ~~Replace `errno` checks by `IOError` subclasses defined by [https://www.python.org/dev/peps/pep-3151/ PEP 3151]~~ [https://github.com/django/django/pull/7915 PR] 33 33 * ~~`django.utils.glob`~~ 34 34 * ~~`django.utils.cookies.SimpleCookie`~~ (remains for Python 3.4 compatibility)