]> Cypherpunks.ru repositories - pyderasn.git/blobdiff - pyderasn.py
Python's -m option can have space before the argument
[pyderasn.git] / pyderasn.py
index fb043feeb76d038f4579695826131dcf3636f740..4e3028ca0cad2314cbd088e1097723eb0ef362fb 100755 (executable)
@@ -3359,7 +3359,6 @@ class Sequence(Obj):
     You have to make specification of sequence::
 
         class Extension(Sequence):
-            __slots__ = ()
             schema = (
                 ("extnID", ObjectIdentifier()),
                 ("critical", Boolean(default=False)),
@@ -3620,7 +3619,7 @@ class Sequence(Obj):
             v = v_tail
             if spec.default is not None and value == spec.default:
                 # Encoded default values are not valid in DER,
-                # but we still allow that
+                # but we allow that anyway
                 continue
             values[name] = value
         if len(v) > 0: