Issue 10825: use assertIsNone(...) instead of assertEquals(None, ...) (original) (raw)
Hello, after I saw that in , I created a small patch to replace all
assertEquals(None, ...)
with
assertIsNone(...)
It's not rocket science, but I think it makes test suite "better" and leverage new unittest features.
Cheers, Sandro