Closed sguthrie closed 5 years ago
Yep. Fixed!
open('filename','a+',0) is unsupported in python3, so the fix will also result in an error:
stderr = open(stderr, 'a+', 0)
ValueError: can't have unbuffered text I/O
Since having the standard error written in binary doesn't make much sense, maybe we can replace line 63 with stderr = open(stderr, 'a+')
Hm. I suppose I didn't run that test on Python 3 after all. Definitely seems to be working this time!
Suggest using
open()
instead offile()