Unserializable Class — fastapi Architecture
Architecture documentation for the Unserializable class in test_jsonable_encoder.py from the fastapi codebase.
Entity Profile
Dependency Diagram
graph TD 58059e25_a00f_8daa_fce5_099cd47f08fc["Unserializable"] 80ce950d_4c72_e7d9_21bb_a5c60524786c["test_jsonable_encoder.py"] 58059e25_a00f_8daa_fce5_099cd47f08fc -->|defined in| 80ce950d_4c72_e7d9_21bb_a5c60524786c 9fe0aad0_67ec_cdee_a7b8_75055b1607ba["__iter__()"] 58059e25_a00f_8daa_fce5_099cd47f08fc -->|method| 9fe0aad0_67ec_cdee_a7b8_75055b1607ba 8d78b3d0_bca1_95b6_652d_7d7f030a4c7a["__dict__()"] 58059e25_a00f_8daa_fce5_099cd47f08fc -->|method| 8d78b3d0_bca1_95b6_652d_7d7f030a4c7a
Relationship Graph
Source Code
tests/test_jsonable_encoder.py lines 45–51
class Unserializable:
def __iter__(self):
raise NotImplementedError()
@property
def __dict__(self):
raise NotImplementedError()
Domain
Defined In
Source
Frequently Asked Questions
What is the Unserializable class?
Unserializable is a class in the fastapi codebase, defined in tests/test_jsonable_encoder.py.
Where is Unserializable defined?
Unserializable is defined in tests/test_jsonable_encoder.py at line 45.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free