Changes between Initial Version and Version 1 of Ticket #24231


Ignore:
Timestamp:
Jan 27, 2015, 5:49:43 PM (10 years ago)
Author:
Carl Meyer
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #24231 – Description

    initial v1  
    77I think the issue of "when are these methods safe to call?" should be discussed in the _meta refactor porting guide, because it has changed from 1.7, even for methods like `get_field()` that otherwise remain similar.
    88
    9 I also think there should be some public supported, documented API that is safe to use before the app registry is populated, that accesses only fields declared on the local model. Perhaps an API equivalent to what you can currently do with `_meta._get_fields(reverse=True)`. (I note that this last is already used several places in Django internally where local fields need to be accessed before the app registry is ready.)
     9I also think there should be some public supported, documented API that is safe to use before the app registry is populated, that accesses only fields declared on the local model. Perhaps an API equivalent to what you can currently do with `_meta._get_fields(reverse=False)`. (I note that this last is already used several places in Django internally where local fields need to be accessed before the app registry is ready.)
Back to Top