예제 #1
0
def unregister_callback(callback_handle):
    """Unregister a callback. For a richer interface, use the CallbackManager class.

    :param callback_handle: The handle of the callback to unregister
    :type callback_handle: int

    :return: None
    :rtype: None
    """
    import c_api

    return c_api.unregister_callback(callback_handle)
예제 #2
0
def unregister_callback(callback_handle):
    """Unregister a callback. For a richer interface, use the CallbackManager class.

    :param callback_handle: The handle of the callback to unregister
    :type callback_handle: int

    :return: None
    :rtype: None
    """
    import c_api

    return c_api.unregister_callback(callback_handle)