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

Method initialize

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

Source from the content-addressed store, hash-verified

71 self.stdin = LazyStdin(self)
72
73 def initialize(self):
74 if self._process is None:
75 self._process = self._do_popen()
76 return self._process
77
78 def __getattr__(self, item):
79 return getattr(self.initialize(), item)

Callers 4

__getattr__Method · 0.95
communicateMethod · 0.95
__getattr__Method · 0.80

Calls 1

_do_popenMethod · 0.95