Home
last modified time | relevance | path

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

/zcbor-3.5.0-3.4.0/zcbor/
Dzcbor.py1263 def format_obj(obj): argument
1264 formatted = pformat(obj)
1298 def _check_tag(self, obj): argument
1301 while isinstance(obj, CBORTag):
1302 if obj.tag in tags or self.type == "ANY":
1303 if obj.tag in tags:
1304 tags.remove(obj.tag)
1305 obj = obj.value
1312 return obj
1332 def _check_type(self, obj): argument
[all …]
/zcbor-3.5.0-3.4.0/tests/scripts/
Dtest_zcbor.py192 def dumps(obj): argument
193 return cbor2.dumps(obj, canonical=True)