Home
last modified time | relevance | path

Searched refs:obj (Results 1 – 2 of 2) sorted by relevance

/zcbor-latest/zcbor/
Dzcbor.py1381 def format_obj(obj): argument
1383 formatted = pformat(obj)
1421 def _check_tag(self, obj): argument
1428 while isinstance(obj, CBORTag):
1429 if obj.tag in tags or self.type == "ANY":
1430 if obj.tag in tags:
1431 tags.remove(obj.tag)
1432 obj = obj.value
1439 return obj
1458 def _check_type(self, obj): argument
[all …]
/zcbor-latest/tests/scripts/
Dtest_zcbor.py198 def dumps(obj): argument
199 return cbor2.dumps(obj, canonical=True)