Changes between Version 49 and Version 55 of Ticket #23919


Ignore:
Timestamp:
Jan 19, 2017, 10:37:22 AM (7 years ago)
Author:
Simon Charette
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #23919 – Description

    v49 v55  
    55* `django.http.cookie` workarounds
    66* `django.utils.2to3_fixes`
    7 * `django.utils.decorators.ContextDecorator` - [https://github.com/django/django/pull/7887 PR 7887]
     7* ~~`django.utils.decorators.ContextDecorator` ~~
    88* `django.utils.encoding`
    99 * ~~`@python_2_unicode_compatible`~~
     
    1717* ~~`from __future__ import unicode_literals`~~
    1818* `str()` stuff for environment variables, e.g. 0bfb53866199f366ed140d49938fd185e5898156
    19 * `str()` stuff for `type(name)` and `__name__`.
    20 * Inheriting from `object` in `django.core.servers.basehttp` (and perhaps other places) ala 4ee06ec3fc8e94d164afbd2f9c880c60c658a9ac -- [https://github.com/django/django/pull/7881 PR 7881]
     19* ~~`str()` stuff for `type(name)` and `__name__`~~
     20* ~~Inheriting from `object` in `django.core.servers.basehttp` (and perhaps other places) ala 4ee06ec3fc8e94d164afbd2f9c880c60c658a9ac~~
    2121* `git grep 'long int'` (mostly docs)
    2222* `django.utils._os [npath,upath]`
     
    2929* Remove note about PYTHONHASHSEED (see #26243)
    3030* Remove Field.creation_counter (replace by metaclass `__prepare__` returning `OrderedDict()`, https://docs.python.org/3/reference/datamodel.html#preparing-the-class-namespace)
    31 * `django.test.utils.reset_warning_registry()`
     31* ~~`django.test.utils.reset_warning_registry()`~~
    3232* Replace `errno` checks by `IOError` subclasses defined by [https://www.python.org/dev/peps/pep-3151/ PEP 3151]
    3333* ~~`django.utils.glob`~~
Back to Top