MCPcopy Index your code
hub / github.com/aws/aws-cli / get_output_stream

Method get_output_stream

awscli/utils.py:431–435  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

429 self._default_less_flags = default_less_flags
430
431 def get_output_stream(self):
432 pager = self._get_configured_pager()
433 if is_a_tty() and pager:
434 return self.get_pager_stream(pager)
435 return self.get_stdout_stream()
436
437 @contextlib.contextmanager
438 def get_pager_stream(self, preferred_pager=None):

Calls 4

_get_configured_pagerMethod · 0.95
get_pager_streamMethod · 0.95
get_stdout_streamMethod · 0.95
is_a_ttyFunction · 0.85