| 852 | |
| 853 | def test_custom_format_specifier(self): |
| 854 | class CustomFormat: |
| 855 | def __format__(self, format_spec): |
| 856 | return format_spec |
| 857 | |
| 858 | self.assertEqual(f'{CustomFormat():\n}', '\n') |
| 859 | self.assertEqual(f'{CustomFormat():\u2603}', '☃') |
no outgoing calls