On 3 April 2018 at 17:54, Peter Otten <__pete...@web.de> wrote:
> I think the culprit is io.open() rather than the logging module. Why does
>
>>>> io.open("/dev/stderr", "a")
> Traceback (most recent call last):
>   File "<stdin>", line 1, in <module>
> OSError: [Errno 29] Illegal seek
>
> even try to seek()?

Because it's append mode so it needs to go to the end?

Paul
-- 
https://mail.python.org/mailman/listinfo/python-list

Reply via email to