This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author ezio.melotti
Recipients benjamin.peterson, ezio.melotti, georg.brandl, michael.foord
Date 2010-12-15.19:36:34
SpamBayes Score 3.2137034e-08
Marked as misclassified No
Message-id <1292441796.9.0.018359428873.issue10712@psf.upfronthosting.co.za>
In-reply-to
Content
The attached patch against 2.7 adds a new fixer to 2to3 that replaces deprecated unittest method names with the correct ones.
There are a few issues:
1) only the "safe" renamings are included; the assert[SameElements|ItemsEqual|CountEqual] and the  assert*Regexp*->assert*Regex* changes are missing;
2) unless 2to3 provides a way to specify a target version (e.g. 3.2 rather than just 3.x), the missing renamings can't be included;
3) the patch is against 2.7 but I'm not sure in what versions could/should be included, or if the fixer should (also|only) go on PyPI;
4) this fixer is useful from 3.1 to 3.2 too, is there a way to use it with 3.x versions only?
5) doc is still missing;
History
Date User Action Args
2010-12-15 19:36:37ezio.melottisetrecipients: + ezio.melotti, georg.brandl, benjamin.peterson, michael.foord
2010-12-15 19:36:36ezio.melottisetmessageid: <1292441796.9.0.018359428873.issue10712@psf.upfronthosting.co.za>
2010-12-15 19:36:34ezio.melottilinkissue10712 messages
2010-12-15 19:36:34ezio.melotticreate