[Python-Dev] Re: When to remove BytesWarning?

2020-11-11 Thread John Hagen
If I recall, it was str(bytes) warning that flagged in a few places and was missing a .decode() call or similar. It seems like the bytes== warnings could be implemented in a type checker such as mypy, if it doesn't already do this. Assuming you have correct type coverage/inference on your proje

[Python-Dev] Re: When to remove BytesWarning?

2020-11-10 Thread John Hagen
> I'm quite sure that almost nobody uses -b or -bb when running their test suite or to develop I noticed this thread and just thought I'd give one example of someone who does use -bb: https://github.com/johnthagen/python-blueprint/blob/210b89fe011d172104e9f1ba2553e4245f76a77b/tox.ini#L44 I admit