microprobe.exceptions.MicroprobeNoGenerationPathError

exception MicroprobeNoGenerationPathError(target, origin, address)[source]

Bases: microprobe.exceptions.MicroprobeCodeGenerationError

Exception raised when there is not a path suitable to generate a given value using the available Generator instances.

Parameters:
  • target (int) – Value to generate.
  • origin (int) – Starting value.
  • address (bool) – If value to generate is an address.
__init__(target, origin, address)[source]
Parameters:
  • target
  • origin
  • address
__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 not a path suitable to generate a given\n value using the available :class:`~.Generator`\n instances.\n\n :param target: Value to generate.\n :type target: :class:`~.int`\n :param origin: Starting value.\n :type origin: :class:`~.int`\n :param address: If value to generate is an address.\n :type address: :class:`~.bool`\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