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

Method ljust

Lib/collections/__init__.py:1582–1583  ·  view source on GitHub ↗
(self, width, *args)

Source from the content-addressed store, hash-verified

1580 return self.data.join(seq)
1581
1582 def ljust(self, width, *args):
1583 return self.__class__(self.data.ljust(width, *args))
1584
1585 def lower(self):
1586 return self.__class__(self.data.lower())

Callers 9

columnizeMethod · 0.45
print_call_headingMethod · 0.45
print_call_lineMethod · 0.45
read_commandMethod · 0.45
_init_oldMethod · 0.45
_compute_digest_fallbackFunction · 0.45
_bodyMethod · 0.45
print_blockMethod · 0.45

Calls 1

__class__Method · 0.45

Tested by

no test coverage detected