aboutsummaryrefslogtreecommitdiff
path: root/pyasn1/codec/ber/decoder.py
diff options
context:
space:
mode:
Diffstat (limited to 'pyasn1/codec/ber/decoder.py')
-rw-r--r--pyasn1/codec/ber/decoder.py12
1 files changed, 2 insertions, 10 deletions
diff --git a/pyasn1/codec/ber/decoder.py b/pyasn1/codec/ber/decoder.py
index 2607d51..9c9195c 100644
--- a/pyasn1/codec/ber/decoder.py
+++ b/pyasn1/codec/ber/decoder.py
@@ -583,11 +583,7 @@ class UniversalConstructedTypeDecoder(AbstractConstructedDecoder):
asn1Spec=openType
)
- asn1Object.setComponentByPosition(
- idx, component,
- matchTags=False,
- matchConstraints=False
- )
+ asn1Object.setComponentByPosition(idx, component)
else:
asn1Object.verifySizeSpec()
@@ -723,11 +719,7 @@ class UniversalConstructedTypeDecoder(AbstractConstructedDecoder):
)
if component is not eoo.endOfOctets:
- asn1Object.setComponentByPosition(
- idx, component,
- matchTags=False,
- matchConstraints=False
- )
+ asn1Object.setComponentByPosition(idx, component)
else:
asn1Object.verifySizeSpec()