microprobe.exceptions.MicroprobeNoComparatorError

exception MicroprobeNoComparatorError(val1, val2)[source]

Bases: microprobe.exceptions.MicroprobeCodeGenerationError

Exception raised when there is no comparator suitable to perform a given action.

Parameters:
__init__(val1, val2)[source]
Parameters:
  • val1
  • val2
__str__()[source]
__class__

alias of __builtin__.type

__delattr__

x.__delattr__(‘name’) <==> del x.name

__dict__ = dict_proxy({'__module__': 'microprobe.exceptions', '__str__': <function __str__>, '__init__': <function __init__>, '__doc__': 'Exception raised when there is no comparator suitable to perform a\n given action.\n\n :param val1: First value to compare.\n :type val1: :class:`~.int` or :class:`~.Register`\n :param val2: Second value to compare.\n :type val2: :class:`~.int` or :class:`~.Register`\n\n '})
__format__()

default object formatter

__getattribute__

x.__getattribute__(‘name’) <==> x.name

__getitem__

x.__getitem__(y) <==> x[y]

__getslice__

x.__getslice__(i, j) <==> x[i:j]

Use of negative indices is not supported.

__hash__
__module__ = 'microprobe.exceptions'
__new__(S, ...) → a new object with type S, a subtype of T
__reduce__()

helper for pickle

__reduce_ex__()

helper for pickle

__repr__
__setattr__

x.__setattr__(‘name’, value) <==> x.name = value

__setstate__()
__sizeof__() → int

size of object in memory, in bytes

__subclasshook__()

Abstract classes can override this to customize issubclass().

This is invoked early on by abc.ABCMeta.__subclasscheck__(). It should return True, False or NotImplemented. If it returns NotImplemented, the normal algorithm is used. Otherwise, it overrides the normal algorithm (and the outcome is cached).

__unicode__()
__weakref__

list of weak references to the object (if defined)

args
message