Skip to content

Commit 2e00229

Browse files
committed
Timeit
1 parent faf6fae commit 2e00229

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1271,7 +1271,8 @@ duration = time() - start_time
12711271
#### Times execution of the passed code:
12721272
```python
12731273
from timeit import timeit
1274-
timeit('"-".join(str(n) for n in range(100))', number=10000, globals=globals())
1274+
timeit('"-".join(str(n) for n in range(100))',
1275+
number=10000, globals=globals())
12751276
```
12761277

12771278
#### Generates a PNG image of call graph and highlights the bottlenecks:

0 commit comments

Comments
 (0)