[issue10825] use assertIsNone(...) instead of assertEquals(None, ...)

2011-01-05 Thread Raymond Hettinger
Raymond Hettinger added the comment: Applied in r87783. -- nosy: +rhettinger resolution: -> accepted status: open -> closed ___ Python tracker ___ _

[issue10825] use assertIsNone(...) instead of assertEquals(None, ...)

2011-01-04 Thread Antoine Pitrou
Antoine Pitrou added the comment: Looks good. -- nosy: +pitrou, r.david.murray ___ Python tracker ___ ___ Python-bugs-list mailing li

[issue10825] use assertIsNone(...) instead of assertEquals(None, ...)

2011-01-04 Thread Sandro Tosi
New submission from Sandro Tosi : Hello, after I saw that in issue9554, 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 --