agronholm / typeguard

Run-time type checker for Python

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Enable typecheck_fail_callback to return a value

decision-dev opened this issue · comments

Things to check first

  • I have searched the existing issues and didn't find my feature already requested there

Feature description

Currently typecheck_fail_callback can only be used for side effects. I am proposing that it should also be able to return a value and that check_type would then return that value.

Use case

This lets us replace this:

x = None
try: 
   check_type(<value>,  <type>)
except TypeCheckError as err:
   x = some_function(err, z)

with the much cleaner and more elegant:

x = check_type(<value>,  <type>,  typecheck_fail_callback= partial(some_function, arg=z)