pyo3/examples/decorator/tests/example.py

12 lines
124 B
Python
Raw Normal View History

2021-12-22 11:12:16 +00:00
@Counter
def say_hello():
print("hello")
say_hello()
say_hello()
say_hello()
say_hello()
assert say_hello.count == 4