]> Cypherpunks.ru repositories - pyderasn.git/blobdiff - pyderasn.py
Fix "mixing" class names typo
[pyderasn.git] / pyderasn.py
index 4a3692795c3974b760b1a20fd9971c05308c078a..bb62acb437c203fa31ee66e03d6789e302a59fdd 100755 (executable)
@@ -6107,7 +6107,7 @@ SequenceState = namedtuple(
 )
 
 
-class SequenceEncode1stMixing:
+class SequenceEncode1stMixin:
     __slots__ = ()
 
     def _encode1st(self, state):
@@ -6121,7 +6121,7 @@ class SequenceEncode1stMixing:
         return len(self.tag) + len_size(vlen) + vlen, state
 
 
-class Sequence(SequenceEncode1stMixing, Obj):
+class Sequence(SequenceEncode1stMixin, Obj):
     """``SEQUENCE`` structure type
 
     You have to make specification of sequence::
@@ -6619,7 +6619,7 @@ class Sequence(SequenceEncode1stMixing, Obj):
             yield pp
 
 
-class Set(Sequence, SequenceEncode1stMixing):
+class Set(Sequence, SequenceEncode1stMixin):
     """``SET`` structure type
 
     Its usage is identical to :py:class:`pyderasn.Sequence`.
@@ -6822,7 +6822,7 @@ SequenceOfState = namedtuple(
 )
 
 
-class SequenceOf(SequenceEncode1stMixing, Obj):
+class SequenceOf(SequenceEncode1stMixin, Obj):
     """``SEQUENCE OF`` sequence type
 
     For that kind of type you must specify the object it will carry on