microprobe.exceptions.MicroprobeBranchConditionError

exception MicroprobeBranchConditionError(cond)[source]

Bases: microprobe.exceptions.MicroprobeCodeGenerationError

Exception raised when the branch condition is not supported.

Parameters:string – cond: Condition
__init__(cond)[source]
Parameters:cond
__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 the branch condition is not supported.\n\n :param string: cond: Condition\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