]> Cypherpunks.ru repositories - pyderasn.git/blobdiff - pyderasn.py
Raise copyright years
[pyderasn.git] / pyderasn.py
index 3c84666a583ac4a85e5fde9119a891bf7680ba87..54242a3bd537fc9360217174cb79b9ccf832a73a 100755 (executable)
@@ -4,7 +4,7 @@
 # pylint: disable=line-too-long,superfluous-parens,protected-access,too-many-lines
 # pylint: disable=too-many-return-statements,too-many-branches,too-many-statements
 # PyDERASN -- Python ASN.1 DER/CER/BER codec with abstract structures
-# Copyright (C) 2017-2022 Sergey Matveev <stargrave@stargrave.org>
+# Copyright (C) 2017-2024 Sergey Matveev <stargrave@stargrave.org>
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Lesser General Public License as
@@ -1196,7 +1196,7 @@ except ImportError:  # pragma: no cover
     tzUTC = "missing"
 
 
-__version__ = "9.2"
+__version__ = "9.3"
 
 __all__ = (
     "agg_octet_string",
@@ -4763,7 +4763,7 @@ class CommonString(OctetString):
         return str(self._value)
 
     def memoryview(self):
-        raise NotImplementedError()
+        raise ValueError("CommonString does not support .memoryview()")
 
     def __repr__(self):
         return pp_console_row(next(self.pps()))