python 装饰者检查参数
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 装饰者检查参数相关的知识,希望对你有一定的参考价值。
# source: https://pypi.python.org/pypi/accepts/0.0.2
# install: pip install accepts
# example:
from accepts import accepts
@accepts(int)
def inc(value):
return value+1
# single type
inc(1) # ok
inc(1.5) # exception: TypeError: ....
# multiple types
@accepts((int,float))
# None
@accepts((int,float,None))
以上是关于python 装饰者检查参数的主要内容,如果未能解决你的问题,请参考以下文章
Python 装饰器检查 Django 上的 POST 参数
Python装饰者在函数测试的作用
python--装饰器
装饰者模式
python_如何定义带参数的装饰器?
python timing_lines,装饰者