print >> sys.stderr, "Error in atexit._run_exitfuncs:"
Why print '>>' in front of sys.stderr?
sys.stderr
Thanks.
This syntax means writes to a file object (sys.stderr in this case) instead of standard output. [Link]
In Python 3.0, print becomes a function instead of a statement: [Link]
print
print("Error in atexit._run_exitfuncs:", file=sys.stderr)
1.4m articles
1.4m replys
5 comments
57.0k users