]> Cypherpunks.ru repositories - pyderasn.git/blobdiff - pyderasn.py
Limitations section
[pyderasn.git] / pyderasn.py
index c83b4393037e180c943c6e72decb9509b188a097..172c1f6474705de88d59918be509c1658a79e0aa 100755 (executable)
@@ -463,6 +463,10 @@ NumericString
 _____________
 .. autoclass:: pyderasn.NumericString
 
+PrintableString
+_______________
+.. autoclass:: pyderasn.PrintableString
+
 UTCTime
 _______
 .. autoclass:: pyderasn.UTCTime
@@ -3579,7 +3583,7 @@ class NumericString(AllowableCharsMixin, CommonString):
     be stored.
 
     >>> NumericString().allowable_chars
-    set(['3', '4', '7', '5', '1', '0', '8', '9', ' ', '6', '2'])
+    frozenset(['0', '1', '2', '3', '4', '5', '6', '7', '8', '9', ' '])
     """
     __slots__ = ()
     tag_default = tag_encode(18)
@@ -3600,7 +3604,7 @@ class PrintableString(AllowableCharsMixin, CommonString):
     Its value is properly sanitized: see X.680 41.4 table 10.
 
     >>> PrintableString().allowable_chars
-    >>> set([' ', "'", ..., 'z'])
+    frozenset([' ', "'", ..., 'z'])
     """
     __slots__ = ()
     tag_default = tag_encode(19)
@@ -3664,7 +3668,7 @@ class UTCTime(CommonString):
 
     .. warning::
 
-       No BER encodings are supported. Only DER.
+       BER encoding is unsupported.
     """
     __slots__ = ()
     tag_default = tag_encode(23)
@@ -3818,7 +3822,7 @@ class GeneralizedTime(UTCTime):
 
     .. warning::
 
-       No BER encodings are supported. Only DER.
+       BER encoding is unsupported.
 
     .. warning::