MCPcopy Index your code
hub / github.com/nodejs/node / StatusLine

Class StatusLine

deps/v8/tools/locs.py:312–319  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

310
311
312class StatusLine:
313 def __init__(self):
314 self.max_width = 0
315
316 def print(self, statusline, end="\r", file=sys.stdout):
317 self.max_width = max(self.max_width, len(statusline))
318 print("{0:<{1}}".format(statusline, self.max_width),
319 end=end, file=file, flush=True)
320
321
322class CommandSplitter:

Callers 1

MainFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…