MCPcopy Index your code
hub / github.com/python/cpython / main

Function main

Tools/scripts/long_conv_tables.py:59–71  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

57
58
59def 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
74if __name__ == '__main__':

Callers 1

Calls 1

conv_tablesFunction · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…