(byteorders=byteorders)
| 23 | NAN = float('nan') |
| 24 | |
| 25 | def iter_integer_formats(byteorders=byteorders): |
| 26 | for code in integer_codes: |
| 27 | for byteorder in byteorders: |
| 28 | if (byteorder not in ('', '@') and code in ('n', 'N')): |
| 29 | continue |
| 30 | yield code, byteorder |
| 31 | |
| 32 | def string_reverse(s): |
| 33 | return s[::-1] |
no outgoing calls
no test coverage detected
searching dependent graphs…