Hello Django users and developers!
I found that Django's function model_to_dict() is useful in some cases. For example, I can transform any Django ORM object to a Python's dict.
But the problem that I found - that I can't grab all Model fields, because model_to_dict() return only fields that aren't hidden. And I decided to add one extra argument to this function that allow us to get ALL fields, including hidden ones.
I named this argument - include_hidden=True - but guys from Django core team found this naming as not well. Please help us to find the best name for this additional argument.
Thank you!
Anton