for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
""" s@tart
1
2
3
4
""" # end
class Foo(object):
@staticmethod
def a(*args):
return args
b = staticmethod(
lambda *a:
a
)
def deco(_):
return lambda func: lambda *a: func(*a)
@deco(1)
@deco(2)
@deco(3)
@deco(4)
Foo.a(
1,
2,
3,
Foo.b(
a()