Closed
Description
I was wondering if it is posible to import <class 'Record'> for type checking.
I'm trying to write a Custom json.JSONEncoder
and would want to be able to do a check like:
if isinstance(obj, Record):
pass
Open to other ways to handle this as well. I assume Record is currently not importable because it's part of the C extension part.