in nubia/internal/completion.py [0:0]
def parse(self):
key, delim, value = self._token.partition("=")
# Is everything before the = sane?
if any(x in key for x in "[]{}\"'"):
# We will treat this as positional in this case
return
# This is key=value
if delim == "=":
self._is_argument = True
self._key = key
else:
# This is positional, the value is the key
value = self._key
assert len(value) == 0
if len(value) > 0:
# Let's parse the value, is it a single, list, dict?
if value[0] == "[":
self._is_list = True
value = value.strip("[")
list_values = value.rpartition(",")
self._last_value = list_values[len(list_values) - 1].lstrip()
elif value[0] == "{":
self._is_dict = True
else:
self._last_value = value