物业装修师
我有一个属性装饰器 so:
def Property(f):
"""
Allow readable properties without voodoo.
"""
fget, fset, fdel = f()
fdoc = f.__doc__
return property(fget, fset, fdel, fdoc)
使用(例如)so:
@Property
def method():
""""""
def fget(self):
return some expression...
return fget, None, None
所以我的问题是关于 python 的执行方式。 Pydev 抱怨
“方法
method
应该将 self 作为 第一个参数”
pylint 给了我
方法没有参数
我知道我可以在 pydev 中关闭此错误消息,但我想知道是否有更好的方法来管理不将 self 作为参数的方法,我可以做得更好。
I have a property decorator so:
def Property(f):
"""
Allow readable properties without voodoo.
"""
fget, fset, fdel = f()
fdoc = f.__doc__
return property(fget, fset, fdel, fdoc)
Used (for example) so:
@Property
def method():
""""""
def fget(self):
return some expression...
return fget, None, None
So my question is about the python way of doing this. Pydev complains about
"method
method
should have self as
first parameter"
And pylint gives me
Method has no argument
I know I can turn off this error message in pydev, but Im wondering if there is a better way to manage methods that do not take self as a parameter, something I can do better.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 @staticmethod 创建一个不接收隐式第一个参数的方法。 Python 的 @property 装饰器不是已经可以实现您想要的功能了吗?
You could use @staticmethod to create a method which does not receive an implicit first argument. Doesn't Python's @property decorator already do what you want?