(self, context, *args)
| 156 | diagnostic information. |
| 157 | """ |
| 158 | def handle(self, context, *args): |
| 159 | if args: |
| 160 | ans = _dec_from_triple(args[0]._sign, args[0]._int, 'n', True) |
| 161 | return ans._fix_nan(context) |
| 162 | return _NaN |
| 163 | |
| 164 | class ConversionSyntax(InvalidOperation): |
| 165 | """Trying to convert badly formed string. |
nothing calls this directly
no test coverage detected