[21:37:31] <djanatyn> yo. having a blast with Pillow, but ran into some weird behavior i couldn't find anywhere else
[21:38:15] <djanatyn> i'm generating an image and attempting to output the binary via stdout; there's a ton of examples online of this (e.g. img.save(sys.stdout, 'PNG') )
[21:38:50] <djanatyn> doing this gives me a file, ./\<stdout\>, which is not very helpful. i was surprised i couldn't find any other examples of this occuring online
[21:43:03] <djanatyn> https://gist.github.com/020e8ce3e2c75c137138 -- here's a 6 line code snippet that has the behavior I described
[21:47:19] <djanatyn> i would try sys.stdout.write(image.tobytes( ... )), but i can't find a list of encoders, either.