WISP ERT (Server)
1.0.0
The WISP Extended Runtime (Server side)
|
Functions | |
def | not_implemented (is_error=False, prompt=None) |
Shorthand method to throw not implemented (error). More... | |
def | setitem_keypath (d, keypath, value) |
Set dictionary item by keypath. More... | |
Variables | |
string | NOT_IMPL_PROMPT = "This function is not implemented." |
Not implemented prompt. More... | |
string | NOT_IMPL_ERROR_PROMPT = "This function is required to be implemented." |
Not implemented error prompt. More... | |
def wisp_ert.util.not_implemented | ( | is_error = False , |
|
prompt = None |
|||
) |
Shorthand method to throw not implemented (error).
is_error | Throw NotImplemented or NotImplementedError. |
prompt | Custom not implemented prompt. |
NotImplemented | or NotImplementedError. |
def wisp_ert.util.setitem_keypath | ( | d, | |
keypath, | |||
value | |||
) |
Set dictionary item by keypath.
d | Dictinoary. |
keypath | Key path. |
value | Value to set. |
string wisp_ert.util.NOT_IMPL_ERROR_PROMPT = "This function is required to be implemented." |
Not implemented error prompt.
string wisp_ert.util.NOT_IMPL_PROMPT = "This function is not implemented." |
Not implemented prompt.