DictablePerson Class — fastapi Architecture
Architecture documentation for the DictablePerson class in test_jsonable_encoder.py from the fastapi codebase.
Entity Profile
Dependency Diagram
graph TD 1f3d68dc_388c_b8c2_93bf_7376af423e22["DictablePerson"] e1868d7c_0598_d5c1_7284_e1ba38c61ad8["Person"] 1f3d68dc_388c_b8c2_93bf_7376af423e22 -->|extends| e1868d7c_0598_d5c1_7284_e1ba38c61ad8 80ce950d_4c72_e7d9_21bb_a5c60524786c["test_jsonable_encoder.py"] 1f3d68dc_388c_b8c2_93bf_7376af423e22 -->|defined in| 80ce950d_4c72_e7d9_21bb_a5c60524786c 9d2431ea_fb7f_06cc_974e_b2a419ed3977["__iter__()"] 1f3d68dc_388c_b8c2_93bf_7376af423e22 -->|method| 9d2431ea_fb7f_06cc_974e_b2a419ed3977
Relationship Graph
Source Code
tests/test_jsonable_encoder.py lines 35–37
class DictablePerson(Person):
def __iter__(self):
return ((k, v) for k, v in self.__dict__.items())
Domain
Defined In
Extends
Source
Frequently Asked Questions
What is the DictablePerson class?
DictablePerson is a class in the fastapi codebase, defined in tests/test_jsonable_encoder.py.
Where is DictablePerson defined?
DictablePerson is defined in tests/test_jsonable_encoder.py at line 35.
What does DictablePerson extend?
DictablePerson extends Person.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free