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

2011-01-05 Thread Raymond Hettinger
Raymond Hettinger rhettin...@users.sourceforge.net added the comment: Applied in r87783. -- nosy: +rhettinger resolution: - accepted status: open - closed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue10825

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

2011-01-04 Thread Sandro Tosi
New submission from Sandro Tosi sandro.t...@gmail.com: 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,

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

2011-01-04 Thread Antoine Pitrou
Antoine Pitrou pit...@free.fr added the comment: Looks good. -- nosy: +pitrou, r.david.murray ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue10825 ___