[issue10353] 2to3 and places argument in unitests assertAlmostEqual

2010-11-08 Thread Michael Foord
Michael Foord added the comment: It's fixed in release31-maint as well. -- ___ Python tracker ___ ___ Python-bugs-list mailing list U

[issue10353] 2to3 and places argument in unitests assertAlmostEqual

2010-11-08 Thread Éric Araujo
Éric Araujo added the comment: Is 3.1 incompatible with 2.7 and 3.2? If so, is it best to have 3.2 compatible with 3.1 or to have 3.1 buggy? -- nosy: +eric.araujo ___ Python tracker _

[issue10353] 2to3 and places argument in unitests assertAlmostEqual

2010-11-08 Thread R. David Murray
R. David Murray added the comment: The change of places to a keyword-only argument in 3.x was reverted last week in py3k trunk. -- nosy: +michael.foord, r.david.murray resolution: -> out of date stage: -> committed/rejected status: open -> closed versions: -Python 2.6, Python 2.7, P

[issue10353] 2to3 and places argument in unitests assertAlmostEqual

2010-11-08 Thread R. David Murray
Changes by R. David Murray : -- nosy: +benjamin.peterson ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http:/

[issue10353] 2to3 and places argument in unitests assertAlmostEqual

2010-11-08 Thread Peter
New submission from Peter : Consider the following example unit test using assertAlmostEqual which uses the places argument as a positional argument, call this places.py: import unittest class Tests(unittest.TestCase): def test_equal_to_five_decimal_places(self): """Check assertAlmo