[issue39938] RotatingFileHandler does not support any mode other than 'a'.

2020-03-12 Thread Vinay Sajip
Vinay Sajip added the comment: > supplying a mode to append bytes is not supported That is correct, log files supported by standard library handlers are text files using some supported encoding. If you need to store arbitrary bytes directly in a log file, feel free to write your own

[issue39938] RotatingFileHandler does not support any mode other than 'a'.

2020-03-11 Thread Karthikeyan Singaravelan
Change by Karthikeyan Singaravelan : -- nosy: +vinay.sajip ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue39938] RotatingFileHandler does not support any mode other than 'a'.

2020-03-11 Thread Eric Govatos
Change by Eric Govatos : -- title: RotatingFileHandler does not support any other mode than 'a'. -> RotatingFileHandler does not support any mode other than 'a'. ___ Python tracker