Can anyone give this a try?
'''print_error_python33.py
there are times when a print() trailing newline disappears with Python 3.3.0
this does not happen with Python 3.2.3 or Python 2.7.3
'''
size = 180000
print("creating long string of %d sevens" % size)
# create a long string of digits
s2 = '7' * size
# looks like this print() loses its trailing newline at times
print("start converting ...")
n = int(s2)
print("converted string to integer")
#print("Int converted : {}".format(timenow()))
'''my result (Windows7 OS, Python 3.3.0)
print() newline is swallowed with 180000 or more digits >>>
creating a long string of 180000 sevens
start converting ...converted string to integer
print() behaves normal with 170000 or less digits>>>
creating a long string of 170000 sevens
start converting ...
converted string to integer
'''