mirror of
https://github.com/cool-RR/PySnooper.git
synced 2026-07-19 01:13:50 +00:00
14 lines
219 B
Python
14 lines
219 B
Python
import time
|
|
import pysnooper
|
|
|
|
snoop = pysnooper.snoop()
|
|
|
|
def test():
|
|
with snoop:
|
|
a = 10
|
|
with snoop:
|
|
time.sleep(1.0)
|
|
a = 20
|
|
time.sleep(1.0)
|
|
|
|
test()
|