Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
Erotemic committed Aug 13, 2023
1 parent 6e7b4c7 commit 480633f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions line_profiler/line_profiler.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,9 +61,9 @@ class LineProfiler(CLineProfiler):
>>> profile = line_profiler.LineProfiler()
>>> @profile
>>> def func():
>>> x1 = [_ for i in range(10)]
>>> x2 = [_ for i in range(100)]
>>> x3 = [_ for i in range(1000)]
>>> x1 = list(range(10))
>>> x2 = list(range(100))
>>> x3 = list(range(1000))
>>> func()
>>> profile.print_stats()
"""
Expand Down

0 comments on commit 480633f

Please sign in to comment.