mirror of
https://github.com/cool-RR/PySnooper.git
synced 2026-01-23 18:24:44 +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()
|