Skip to content

Commit

Permalink
Added parenthesis to print
Browse files Browse the repository at this point in the history
  • Loading branch information
jandecaluwe committed Nov 1, 2015
1 parent 97c8c8a commit 65e6355
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions myhdl/test/bugs/test_issue_133.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ def issue_133():
def check():
z.next = large_signal[10]
yield delay(10)
print large_signal[31:]
print large_signal[62:31]
print large_signal[93:62]
print (large_signal[31:])
print (large_signal[62:31])
print (large_signal[93:62])

return check

Expand Down

0 comments on commit 65e6355

Please sign in to comment.