This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author edison.abahurire
Recipients anthonypjshaw, edison.abahurire
Date 2020-05-18.12:44:20
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1589805861.06.0.616610250992.issue40670@roundup.psfhosted.org>
In-reply-to
Content
The Error can be evidenced below:

```
>>>
>>> import timeit
>>>
>>> timeit.timeit('', number=10000)
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "/usr/lib/python3.8/timeit.py", line 232, in timeit
    return Timer(stmt, setup, timer, globals).timeit(number)
  File "/usr/lib/python3.8/timeit.py", line 131, in __init__
    code = compile(src, dummy_src_name, "exec")
  File "<timeit-src>", line 7
    _t1 = _timer()
    ^
IndentationError: expected an indented block
>>>
```
History
Date User Action Args
2020-05-18 12:44:21edison.abahuriresetrecipients: + edison.abahurire, anthonypjshaw
2020-05-18 12:44:21edison.abahuriresetmessageid: <1589805861.06.0.616610250992.issue40670@roundup.psfhosted.org>
2020-05-18 12:44:21edison.abahurirelinkissue40670 messages
2020-05-18 12:44:20edison.abahurirecreate