作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
假设我有以下函数,它有一个属性,将其标记为在回调子系统中进行特殊处理:
def my_func(msg):
print msg
my_func.my_marker = SPECIAL_CONSTANT
问题是,如果其他代码位使用 functools.partial
或其他装饰器包装 my_func
,则 my_marker
将丢失。
my_partial = partial(my_func, 'hello world')
print my_partial.my_marker
>>> AttributeError...
有没有办法在包装时保护函数的属性?有没有更好的方法来存储我当前存储在 my_marker
中的元数据?似乎存储对原始函数的引用也遇到了同样的问题。
最佳答案
如果您知道您使用的部分实际上是一个部分,您可以使用它的 func
属性。
E.克。
from functools import partial
SPECIAL_CONSTANT = 'bam'
def my_func(msg):
print msg
my_func.my_marker = SPECIAL_CONSTANT
my_partial = partial(my_func, 'hello world')
print my_partial.func.my_marker
如果你确实必须处理meta_data,也许编写类并重写__call__()
方法是更好的方法。
关于python - 函数的属性如何能够在包装中幸存下来?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37192712/
我是一名优秀的程序员,十分优秀!