Changes between Version 79 and Version 87 of Ticket #23919


Ignore:
Timestamp:
Jan 26, 2017, 2:32:01 AM (7 years ago)
Author:
Aymeric Augustin
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #23919 – Description

    v79 v87  
    99 * ~~`@python_2_unicode_compatible`~~
    1010 * ~~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]
    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.
     
    2323* ~~In tests: `contextlib.closing(self.urlopen` (`contextlib.closing` no longer needed)~~
    2424* ~~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]
    2626* ~~Remove `# -*- coding: utf-8 -*-` source file encoding~~ (that's the default on Python 3)
    2727* Evaluate replacement of custom `__del__` methods by [https://docs.python.org/3/library/weakref.html#weakref.finalize weakref.finalize]
     
    3030* Remove Field.creation_counter (replace by metaclass `__prepare__` returning `OrderedDict()`, https://docs.python.org/3/reference/datamodel.html#preparing-the-class-namespace)
    3131* ~~`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]
    3333* ~~`django.utils.glob`~~
    3434* ~~`django.utils.cookies.SimpleCookie`~~ (remains for Python 3.4 compatibility)
Back to Top