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

Function _parse_section

awscli/botocore/configloader.py:203–211  ·  view source on GitHub ↗
(key, values)

Source from the content-addressed store, hash-verified

201
202
203def _parse_section(key, values):
204 result = {}
205 try:
206 parts = shlex.split(key)
207 except ValueError:
208 return result
209 if len(parts) == 2:
210 result[parts[1]] = values
211 return result
212
213
214def build_profile_map(parsed_ini_config):

Callers 1

build_profile_mapFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected