Re: Question about `_meta` API's naming

2024-02-21 Thread Jason
https://forum.djangoproject.com/ would be a better place to ask, FYI. as far as why keep private... lets flip it around. Why make it public? what's the benefit of this change? Having it private means that the API internals can change if necessary On Tuesday, February 20, 2024 at 10:15:43 AM

Question about `_meta` API's naming

2024-02-20 Thread Gyeong Hoe Koo
As the documentation says, Django's `_meta` API is core (https://docs.djangoproject.com/en/5.0/ref/models/meta/), but in my knowledge, APIs that start with `_` are private. Table names, etc. are one of the important APIs, and they seem to be pretty stable. Shouldn't we make them public instead