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