Michael Merickel
2018-10-15 81576ee51564c49d5ff3c1c07f214f22a8438231
commit | author | age
fca1ef 1 import venusian
CM 2
3 def foo(wrapped):
4     def bar(scanner, name, wrapped):
5         scanner.config.a = scanner.a
6     venusian.attach(wrapped, bar)
7     return wrapped
8
9 @foo
10 def hello():
11     pass
12
13 hello() # appease coverage
14