(self)
| 276 | # Test number formatting with a cooked "C" locale. |
| 277 | |
| 278 | def test_grouping(self): |
| 279 | self._test_format_string("%.2f", 12345.67, grouping=True, out='12345.67') |
| 280 | |
| 281 | def test_grouping_and_padding(self): |
| 282 | self._test_format_string("%9.2f", 12345.67, grouping=True, out=' 12345.67') |
nothing calls this directly
no test coverage detected