基于装饰器的python参数类型检查
2021/7/15 20:08:12
本文主要是介绍基于装饰器的python参数类型检查,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
基于装饰器和inspect模块对函数参数类型进行检查。
from functools import wraps from inspect import signature def assert_type(*type_args, **type_kwargs): def dec(fn): sig = signature(fn) bound_types = sig.bind_partial(*type_args, **type_kwargs).arguments @wraps(fn) def wrapper(*args, **kwargs): bound_values = sig.bind(*args, **kwargs) for name, value in bound_values.arguments.items(): if name in bound_types: if not isinstance(value, bound_types[name]): raise TypeError('Argument {} must be {}'.format(name, bound_types[name])) return fn(*args, **kwargs) return wrapper return dec
上面的代码中,使用inspect
中的signature
方法获取了fn
的Signature签名
,然后使用bind_partial
方法创建了(*type_args, **type_kwargs)
到func
参数的映射(也就是一个字典)。
# 使用 @assert_type(a=int, b=int) def add(a, b=1): return a+b
这篇关于基于装饰器的python参数类型检查的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-11-02Python编程基础
- 2024-11-01Python 基础教程
- 2024-11-01用Python探索可解与不可解方程的问题
- 2024-11-01Python编程入门指南
- 2024-11-01Python编程基础知识
- 2024-11-01Python编程基础
- 2024-10-31Python基础入门:理解变量与数据类型
- 2024-10-30Python股票自动化交易资料详解与实战指南
- 2024-10-30Python入行:新手必读的Python编程入门指南
- 2024-10-30Python入行:初学者必备的编程指南