Home
last modified time | relevance | path

Searched refs:pyObject (Results 1 – 3 of 3) sorted by relevance

/external/python/pyasn1/pyasn1/codec/native/
Ddecoder.py21 def __call__(self, pyObject, asn1Spec, decodeFun=None, **options): argument
22 return asn1Spec.clone(pyObject)
26 def __call__(self, pyObject, asn1Spec, decodeFun=None, **options): argument
27 return asn1Spec.clone(univ.BitString.fromBinaryString(pyObject))
31 def __call__(self, pyObject, asn1Spec, decodeFun=None, **options): argument
37 if field in pyObject:
38 … asn1Value[field] = decodeFun(pyObject[field], componentsTypes[field].asn1Object, **options)
44 def __call__(self, pyObject, asn1Spec, decodeFun=None, **options): argument
47 for pyValue in pyObject:
54 def __call__(self, pyObject, asn1Spec, decodeFun=None, **options): argument
[all …]
Dencoder.py211 pyObject = concreteEncoder.encode(value, self, **options)
214 LOG('encoder %s produced: %s' % (type(concreteEncoder).__name__, repr(pyObject)))
217 return pyObject
/external/python/pyasn1/docs/source/pyasn1/codec/native/
Dcontents.rst7 .. autofunction:: pyasn1.codec.native.decoder.decode(pyObject, asn1Spec)