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 project, you could potentially catch this at static analysis time rather than runtime. _______________________________________________ Python-Dev mailing list -- [email protected] To unsubscribe send an email to [email protected] https://mail.python.org/mailman3/lists/python-dev.python.org/ Message archived at https://mail.python.org/archives/list/[email protected]/message/SN2HQG6KQGGQB2SOF2NKCIWQVF6UWKKU/ Code of Conduct: http://python.org/psf/codeofconduct/
