Minor issue, but reporting what I noticed. For given code.
for i in range(2):
for j in range(2):
print j,
print
% python hello.py
0 1
0 1
% python hello.py | hexdump
0000000 30 20 31 0a 30 20 31 0a
0000008
% cat hello.py | make run | hexdump
0000000 30 20 31 20 0a 30 20 31 20 0a
000000a