()
| 57 | |
| 58 | |
| 59 | def main(): |
| 60 | print( |
| 61 | f'''\ |
| 62 | // Tables are computed by Tools/scripts/long_conv_tables.py |
| 63 | #if PYLONG_BITS_IN_DIGIT == 15 |
| 64 | {conv_tables(15)} |
| 65 | #elif PYLONG_BITS_IN_DIGIT == 30 |
| 66 | {conv_tables(30)} |
| 67 | #else |
| 68 | #error "invalid PYLONG_BITS_IN_DIGIT value" |
| 69 | #endif |
| 70 | ''' |
| 71 | ) |
| 72 | |
| 73 | |
| 74 | if __name__ == '__main__': |
no test coverage detected
searching dependent graphs…