py3port: use floor division where applicable
This commit is contained in:
parent
2c253c0750
commit
46f44b645b
17 changed files with 50 additions and 51 deletions
|
|
@ -112,4 +112,4 @@ run_tests()
|
|||
|
||||
t = int(time.time()) - start_time
|
||||
m = '\nAll requested tests finished OK, elapsed time: {:02}:{:02}'
|
||||
gmsg(m.format(t/60,t%60))
|
||||
gmsg(m.format(t//60,t%60))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue