medcat.utils.legacy.v2_beta =========================== .. py:module:: medcat.utils.legacy.v2_beta Classes ------- .. autoapisummary:: medcat.utils.legacy.v2_beta.RemappingUnpickler Functions --------- .. autoapisummary:: medcat.utils.legacy.v2_beta.fix_module_and_cls_name Module Contents --------------- .. py:class:: RemappingUnpickler(*args, **kwds) Bases: :py:obj:`dill.Unpickler` python's Unpickler extended to interpreter sessions and more types .. py:method:: find_class(module, name) Return an object from a specified module. If necessary, the module will be imported. Subclasses may override this method (e.g. to restrict unpickling of arbitrary classes and functions). This method is called whenever a class or a function object is needed. Both arguments passed are str objects. .. py:attribute:: _session :value: False .. py:method:: __init__(*args, **kwds) Initialize self. See help(type(self)) for accurate signature. .. py:attribute:: _main .. py:attribute:: _ignore :value: False .. py:method:: load() Load a pickle. Read a pickled object representation from the open file object given in the constructor, and return the reconstituted object hierarchy specified therein. .. py:method:: __delattr__() Implement delattr(self, name). .. py:method:: __dir__() Default dir() implementation. .. py:method:: __eq__() Return self==value. .. py:method:: __format__() Default object formatter. .. py:method:: __ge__() Return self>=value. .. py:method:: __getattribute__() Return getattr(self, name). .. py:method:: __gt__() Return self>value. .. py:method:: __hash__() Return hash(self). .. py:method:: __le__() Return self<=value. .. py:method:: __lt__() Return self