summaryrefslogtreecommitdiff
path: root/pyasn1/type/base.py
diff options
context:
space:
mode:
Diffstat (limited to 'pyasn1/type/base.py')
-rw-r--r--pyasn1/type/base.py18
1 files changed, 0 insertions, 18 deletions
diff --git a/pyasn1/type/base.py b/pyasn1/type/base.py
index 834b76e..994f1c9 100644
--- a/pyasn1/type/base.py
+++ b/pyasn1/type/base.py
@@ -677,24 +677,6 @@ class ConstructedAsn1Type(Asn1Type):
return clone
- @property
- def isInconsistent(self):
- """Run necessary checks to ensure object consistency.
-
- Default action is to verify |ASN.1| object against constraints imposed
- by `subtypeSpec`.
-
- Raises
- ------
- :py:class:`~pyasn1.error.PyAsn1tError` on any inconsistencies found
- """
- try:
- self.subtypeSpec(self)
-
- except error.PyAsn1Error:
- exc = sys.exc_info()[1]
- return exc
-
def getComponentByPosition(self, idx):
raise error.PyAsn1Error('Method not implemented')