Changes between Version 92 and Version 96 of Ticket #23919


Ignore:
Timestamp:
Jan 30, 2017, 6:32:01 AM (7 years ago)
Author:
Tim Graham
Comment:

I also looked briefly at models field and manager usage of creation_counter but it wasn't obvious if the __prepare__() approach was feasible or if it would be simpler. I think we can defer that task for now.

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #23919 – Description

    v92 v96  
    2828* ~~Remove `__ne__` from objects already defining a `__eq__`~~
    2929* ~~Remove note about PYTHONHASHSEED (see #26243)~~
    30 * Remove Field.creation_counter (replace by metaclass `__prepare__` returning `OrderedDict()`, https://docs.python.org/3/reference/datamodel.html#preparing-the-class-namespace)
     30* ~~Remove Field.creation_counter (replace by metaclass `__prepare__` returning `OrderedDict()`, https://docs.python.org/3/reference/datamodel.html#preparing-the-class-namespace)~~ (see comment:95)
    3131* ~~`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]~~ [https://github.com/django/django/pull/7915 PR]
Back to Top