__get__/__set__ for type-safe attributes.
Constraints
Example
class Person:
name = TypedField(str)
age = TypedField(int)
p = Person()
p.name = "Alice" # ok
p.age = "x" # TypeError
Recent Submissions
No submissions yet — hit Run Tests to try!
Hints