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

Function print_

Lib/re/_compiler.py:616–622  ·  view source on GitHub ↗
(*args, to=None)

Source from the content-addressed store, hash-verified

614
615 def dis_(start, end):
616 def print_(*args, to=None):
617 if to is not None:
618 labels.add(to)
619 args += ('(to %d)' % (to,),)
620 print('%*d%s ' % (offset_width, start, ':' if start in labels else '.'),
621 end=' '*(level-1))
622 print(*args)
623
624 def print_2(*args):
625 print(end=' '*(offset_width + 2*level))

Callers 3

test_printMethod · 0.85
test_print_fileMethod · 0.85
dis_Function · 0.85

Calls 1

addMethod · 0.45

Tested by 2

test_printMethod · 0.68
test_print_fileMethod · 0.68

Used in the wild real call sites across dependent graphs

searching dependent graphs…