INNER CODE UNIT · Python

__unicode__

wbond/asn1crypto · asn1crypto/core.py:483

    def __unicode__(self):
        """
        A fall-back method for print() in Python 3

        :return:
            A unicode string of the output of repr()
        """

        return self.__repr__()

    def __reduce__(self):
        """
        Permits pickling Asn1Value objects using their DER representation.
        """
        return unpickle_helper, (self.__class__, self.dump())

    def _new_instance(self):
        """

View source record →

📰 Research Paper
Loading…
⏳ Fetching content…