Skip to content

Commit

Permalink
Fix test broken in Py3.8
Browse files Browse the repository at this point in the history
As title
  • Loading branch information
stuartarchibald committed Jan 7, 2020
1 parent dfe0263 commit bd8f048
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions numba/tests/test_annotations.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,8 @@ def bar(x):

def foo(x):
h = 0.
for i in range(x): # py 38 needs two loops for one to lift?!
h = h + i
for k in range(x):
h = h + k
if x:
Expand Down

0 comments on commit bd8f048

Please sign in to comment.