File: twocalls2.py

package info (click to toggle)
pprofile 2.1.0-2
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 512 kB
  • sloc: python: 2,928; sh: 41; makefile: 3
file content (7 lines) | stat: -rw-r--r-- 80 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
from time import sleep
def bar():
  sleep(0.1)
def foo():
  bar()
  bar()
foo()