Line
# Hits Time Per Hit % Time Line Contents
09 |
============================================================== |
10 |
2 @profile |
11 |
3 def primes(n): |
12 |
4 1 2 2.0 1.1 if n==2: |
13 |
5 return [2] |
14 |
6 1 1 1.0 0.5 elif n<2: |
15 |
7 return [] |