Reputation: 5030
I'm trying to print a message to stderr. Is there a way to pass the stderr filehandle to print?
Upvotes: 14
Views: 4946
Found it:
stderr.write("Message");
Upvotes: 16