INNER CODE UNIT · Python

untag

wbond/asn1crypto · asn1crypto/core.py:574

    def untag(self):
        """
        Copies the object, removing any special tagging from it

        :return:
            An Asn1Value object
        """

        new_obj = self.__class__()
        new_obj._copy(self, copy.deepcopy)
        return new_obj

    def _copy(self, other, copy_func):
        """
        Copies the contents of another Asn1Value object to itself

        :param object:
            Another instance of the same class

View source record →

📰 Research Paper
Loading…
⏳ Fetching content…