Changes between Version 49 and Version 55 of Ticket #23919
- Timestamp:
- Jan 19, 2017, 10:37:22 AM (8 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #23919 – Description
v49 v55 5 5 * `django.http.cookie` workarounds 6 6 * `django.utils.2to3_fixes` 7 * `django.utils.decorators.ContextDecorator` - [https://github.com/django/django/pull/7887 PR 7887]7 * ~~`django.utils.decorators.ContextDecorator` ~~ 8 8 * `django.utils.encoding` 9 9 * ~~`@python_2_unicode_compatible`~~ … … 17 17 * ~~`from __future__ import unicode_literals`~~ 18 18 * `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~~ 21 21 * `git grep 'long int'` (mostly docs) 22 22 * `django.utils._os [npath,upath]` … … 29 29 * Remove note about PYTHONHASHSEED (see #26243) 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 * `django.test.utils.reset_warning_registry()`31 * ~~`django.test.utils.reset_warning_registry()`~~ 32 32 * Replace `errno` checks by `IOError` subclasses defined by [https://www.python.org/dev/peps/pep-3151/ PEP 3151] 33 33 * ~~`django.utils.glob`~~