File: test_as.py

package info (click to toggle)
python-memory-profiler 0.52-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 296 kB
  • sloc: python: 1,628; makefile: 30
file content (9 lines) | stat: -rw-r--r-- 104 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
import math

@profile
def f():
    o = math.sqrt(2013)
    return o

if __name__ == '__main__':
    f()