Lines Matching refs:val
315 def setdefault(self, key, val=None):
319 return dict.setdefault(self, key, val)
339 for key, val in dict(values).items():
343 data[key] = val
349 def set(self, key, val, coded_val):
357 self._value = val
444 (?P<val> # Start of group 'val'
450 ) # End of group 'val'
463 def value_decode(self, val):
470 return val, val
472 def value_encode(self, val):
478 strval = str(val)
558 key, value = match.group("key"), match.group("val")
607 def value_decode(self, val):
608 return _unquote(val), val
610 def value_encode(self, val):
611 strval = str(val)