]> Cypherpunks.ru repositories - pyderasn.git/blobdiff - pyderasn.py
Prepare for release
[pyderasn.git] / pyderasn.py
index 7ca25aab5779972c785a10c46bb4da9df8933ed1..593bf94d6633d51357366ef5a268a285e0ec6cea 100755 (executable)
@@ -17,9 +17,9 @@
 #
 # You should have received a copy of the GNU Lesser General Public
 # License along with this program.  If not, see <http://www.gnu.org/licenses/>.
-"""Python ASN.1 DER/BER codec with abstract structures
+"""Python ASN.1 DER/CER/BER codec with abstract structures
 
-This library allows you to marshal various structures in ASN.1 DER
+This library allows you to marshal various structures in ASN.1 DER/CER
 format, unmarshal BER/CER/DER ones.
 
     >>> i = Integer(123)
@@ -770,7 +770,7 @@ forcefully encoded in DER during CER encoding, by specifying
 
     class SignedAttributes(SetOf):
         schema = Attribute()
-        bounds = (1, 32)
+        bounds = (1, float("+inf"))
         der_forced = True
 
 .. _agg_octet_string:
@@ -1204,7 +1204,7 @@ except ImportError:  # pragma: no cover
     def colored(what, *args, **kwargs):
         return what
 
-__version__ = "8.1"
+__version__ = "8.2"
 
 __all__ = (
     "agg_octet_string",