SYMBOL INDEX (393 symbols across 18 files) FILE: src/sos_notebook/comm_manager.py class CommProxyHandler (line 16) | class CommProxyHandler: method __init__ (line 17) | def __init__(self, KC, sos_kernel): method handle_msg (line 21) | def handle_msg(self, msg): class SoSCommManager (line 42) | class SoSCommManager(CommManager): method __init__ (line 50) | def __init__(self, **kwargs): method register_subcomm (line 54) | def register_subcomm(self, comm_id, KC, sos_kernel): method get_comm (line 57) | def get_comm(self, comm_id): FILE: src/sos_notebook/completer.py function last_valid (line 15) | def last_valid(line): class SoS_MagicsCompleter (line 25) | class SoS_MagicsCompleter: method __init__ (line 26) | def __init__(self, kernel): method get_completions (line 29) | def get_completions(self, line): class SoS_PathCompleter (line 61) | class SoS_PathCompleter: method __init__ (line 66) | def __init__(self): method get_completions (line 69) | def get_completions(self, line): class PythonCompleter (line 84) | class PythonCompleter: method __init__ (line 85) | def __init__(self): method get_completions (line 88) | def get_completions(self, line): class SoS_Completer (line 95) | class SoS_Completer: method __init__ (line 96) | def __init__(self, kernel): method complete_text (line 103) | def complete_text(self, code, cursor_pos=None): FILE: src/sos_notebook/converter.py function execute_sos_notebook (line 21) | def execute_sos_notebook( class SoS_Exporter (line 91) | class SoS_Exporter(Exporter): method __init__ (line 92) | def __init__(self, config=None, **kwargs): method content_from_notebook_cell (line 97) | def content_from_notebook_cell(self, cell, fh, idx=0): method workflow_from_notebook_cell (line 109) | def workflow_from_notebook_cell(self, cell, fh, idx=0): method from_notebook_node (line 141) | def from_notebook_node(self, nb, resources, **kwargs): class ScriptToNotebookConverter (line 162) | class ScriptToNotebookConverter: method get_parser (line 163) | def get_parser(self): method convert (line 171) | def convert(self, script_file, notebook_file, args=None, unknown_args=... class NotebookToScriptConverter (line 306) | class NotebookToScriptConverter: method get_parser (line 307) | def get_parser(self): method convert (line 324) | def convert(self, notebook_file, sos_file, args=None, unknown_args=None): function get_template_args (line 350) | def get_template_args(): function export_notebook (line 357) | def export_notebook( function _is_int (line 431) | def _is_int(value): function _is_float (line 441) | def _is_float(value): function parse_papermill_parameters (line 451) | def parse_papermill_parameters(values): class NotebookToHTMLConverter (line 473) | class NotebookToHTMLConverter: method get_parser (line 474) | def get_parser(self): method convert (line 514) | def convert(self, notebook_file, output_file, sargs=None, unknown_args... class NotebookToPDFConverter (line 567) | class NotebookToPDFConverter: method get_parser (line 568) | def get_parser(self): method convert (line 594) | def convert(self, notebook_file, output_file, sargs=None, unknown_args... class NotebookToMarkdownConverter (line 649) | class NotebookToMarkdownConverter: method get_parser (line 650) | def get_parser(self): method convert (line 669) | def convert(self, notebook_file, output_file, sargs=None, unknown_args... class NotebookToNotebookConverter (line 701) | class NotebookToNotebookConverter: method get_parser (line 702) | def get_parser(self): method nonSoS_to_SoS_notebook (line 737) | def nonSoS_to_SoS_notebook(self, notebook, args): method SoS_to_nonSoS_notebook (line 787) | def SoS_to_nonSoS_notebook(self, notebook, args): method convert (line 843) | def convert(self, notebook_file, output_file, sargs=None, unknown_args... FILE: src/sos_notebook/inspector.py class SoS_VariableInspector (line 14) | class SoS_VariableInspector: method __init__ (line 15) | def __init__(self, kernel): method inspect (line 19) | def inspect(self, name, line, pos): class SoS_SyntaxInspector (line 32) | class SoS_SyntaxInspector: method __init__ (line 33) | def __init__(self, kernel): method inspect (line 36) | def inspect(self, name, line, pos): class SoS_Inspector (line 63) | class SoS_Inspector: method __init__ (line 64) | def __init__(self, kernel): method inspect (line 70) | def inspect(self, name, line, pos): FILE: src/sos_notebook/install.py function _is_root (line 22) | def _is_root(): function get_install_sos_kernel_spec_parser (line 29) | def get_install_sos_kernel_spec_parser(): function install_sos_kernel_spec (line 47) | def install_sos_kernel_spec(user, prefix): function main (line 63) | def main(): FILE: src/sos_notebook/kernel.py class FlushableStringIO (line 46) | class FlushableStringIO: method __init__ (line 47) | def __init__(self, kernel, name, *args, **kwargs): method write (line 51) | def write(self, content): method flush (line 76) | def flush(self): function make_transient_msg (line 85) | def make_transient_msg(msg_type, content): class SoS_Kernel (line 112) | class SoS_Kernel(IPythonKernel): method get_supported_languages (line 127) | def get_supported_languages(self): method get_kernel_list (line 149) | def get_kernel_list(self): method get_completer (line 158) | def get_completer(self): method get_inspector (line 165) | def get_inspector(self): method __init__ (line 172) | def __init__(self, **kwargs): method sos_comm (line 275) | def sos_comm(self, comm, msg): method notify_error (line 370) | def notify_error(self, e): method send_frontend_msg (line 388) | def send_frontend_msg(self, msg_type, msg=None): method redirect_sos_io (line 443) | def redirect_sos_io(self): method get_vars_from (line 452) | async def get_vars_from(self, items, from_kernel=None, explicit=False,... method put_vars_to (line 527) | async def put_vars_to(self, items, to_kernel=None, explicit=False, as_... method expand_text_in (line 644) | async def expand_text_in(self, text, sigil=None, kernel="SoS"): method do_is_complete (line 687) | def do_is_complete(self, code): method do_inspect (line 770) | def do_inspect(self, code, cursor_pos, detail_level=0): method do_complete (line 805) | async def do_complete(self, code, cursor_pos): method warn (line 847) | def warn(self, message): method run_cell (line 854) | async def run_cell(self, code, silent, store_history, on_error=None): method get_info_of_subkernels (line 975) | def get_info_of_subkernels(self): method switch_kernel (line 1007) | async def switch_kernel( method shutdown_kernel (line 1108) | def shutdown_kernel(self, kernel, restart=False): method get_response (line 1156) | def get_response(self, statement, msg_types, name=None): method run_sos_code (line 1220) | def run_sos_code(self, code, silent): method render_result (line 1249) | def render_result(self, res): method send_result (line 1266) | def send_result(self, res, silent=False): method init_metadata (line 1285) | def init_metadata(self, metadata): method do_execute (line 1348) | async def do_execute( method _do_execute (line 1423) | async def _do_execute( method do_shutdown (line 1497) | def do_shutdown(self, restart): method _atexit_shutdown (line 1512) | def _atexit_shutdown(self): method __del__ (line 1520) | def __del__(self): function _get_comm_manager (line 1529) | def _get_comm_manager(*args, **kwargs): FILE: src/sos_notebook/magics.py class SoS_Magic (line 31) | class SoS_Magic: method __init__ (line 34) | def __init__(self, kernel): method _interpolate_text (line 38) | def _interpolate_text(self, text, quiet=False): method get_magic_and_code (line 58) | def get_magic_and_code(self, code, warn_remaining=False): method match (line 76) | def match(self, code): method run_shell_command (line 79) | def run_shell_command(self, cmd): method apply (line 93) | async def apply(self, code, silent, store_history, user_expressions, a... method _parse_error (line 96) | def _parse_error(self, msg): class Command_Magic (line 100) | class Command_Magic(SoS_Magic): method match (line 103) | def match(self, code): method apply (line 106) | async def apply(self, code, silent, store_history, user_expressions, a... class Capture_Magic (line 114) | class Capture_Magic(SoS_Magic): method __init__ (line 117) | def __init__(self, kernel): method get_parser (line 120) | def get_parser(self): method apply (line 177) | async def apply(self, code, silent, store_history, user_expressions, a... class Cd_Magic (line 342) | class Cd_Magic(SoS_Magic): method __init__ (line 345) | def __init__(self, kernel): method get_parser (line 348) | def get_parser(self): method handle_magic_cd (line 356) | async def handle_magic_cd(self, option): method apply (line 403) | async def apply(self, code, silent, store_history, user_expressions, a... class Clear_Magic (line 416) | class Clear_Magic(SoS_Magic): method __init__ (line 419) | def __init__(self, kernel): method apply (line 422) | async def apply(self, code, silent, store_history, user_expressions, a... class ConnectInfo_Magic (line 430) | class ConnectInfo_Magic(SoS_Magic): method __init__ (line 433) | def __init__(self, kernel): method apply (line 436) | async def apply(self, code, silent, store_history, user_expressions, a... class Convert_Magic (line 454) | class Convert_Magic(SoS_Magic): method __init__ (line 457) | def __init__(self, kernel): method get_parser (line 460) | def get_parser(self): method apply (line 501) | async def apply(self, code, silent, store_history, user_expressions, a... class Debug_Magic (line 584) | class Debug_Magic(SoS_Magic): method __init__ (line 587) | def __init__(self, kernel): method apply (line 590) | async def apply(self, code, silent, store_history, user_expressions, a... class Dict_Magic (line 601) | class Dict_Magic(SoS_Magic): method __init__ (line 604) | def __init__(self, kernel): method get_parser (line 607) | def get_parser(self): method handle_magic_dict (line 638) | async def handle_magic_dict(self, line): method apply (line 693) | async def apply(self, code, silent, store_history, user_expressions, a... class Env_Magic (line 702) | class Env_Magic(SoS_Magic): method __init__ (line 705) | def __init__(self, kernel): method get_parser (line 708) | def get_parser(self): method apply (line 758) | async def apply(self, code, silent, store_history, user_expressions, a... class Expand_Magic (line 842) | class Expand_Magic(SoS_Magic): method __init__ (line 845) | def __init__(self, kernel): method get_parser (line 848) | def get_parser(self): method apply (line 876) | async def apply(self, code, silent, store_history, user_expressions, a... class Get_Magic (line 916) | class Get_Magic(SoS_Magic): method __init__ (line 919) | def __init__(self, kernel): method get_parser (line 922) | def get_parser(self): method apply (line 949) | async def apply(self, code, silent, store_history, user_expressions, a... class Matplotlib_Magic (line 967) | class Matplotlib_Magic(SoS_Magic): method __init__ (line 970) | def __init__(self, kernel): method get_parser (line 973) | def get_parser(self): method apply (line 1010) | async def apply(self, code, silent, store_history, user_expressions, a... class Paste_Magic (line 1062) | class Paste_Magic(SoS_Magic): method __init__ (line 1065) | def __init__(self, kernel): method apply (line 1068) | async def apply(self, code, silent, store_history, user_expressions, a... class Preview_Magic (line 1103) | class Preview_Magic(SoS_Magic): method __init__ (line 1106) | def __init__(self, kernel): method preview_var (line 1110) | def preview_var(self, item, style=None): method show_preview_result (line 1154) | def show_preview_result(self, result): method preview_file (line 1192) | def preview_file(self, filename, style=None): method get_parser (line 1252) | def get_parser(self): method handle_magic_preview (line 1319) | async def handle_magic_preview(self, items, kernel=None, style=None): method apply (line 1476) | async def apply(self, code, silent, store_history, user_expressions, a... class Pull_Magic (line 1564) | class Pull_Magic(SoS_Magic): method __init__ (line 1567) | def __init__(self, kernel): method get_parser (line 1570) | def get_parser(self): method handle_magic_pull (line 1609) | async def handle_magic_pull(self, args): method apply (line 1635) | async def apply(self, code, silent, store_history, user_expressions, a... class Push_Magic (line 1651) | class Push_Magic(SoS_Magic): method __init__ (line 1654) | def __init__(self, kernel): method get_parser (line 1657) | def get_parser(self): method handle_magic_push (line 1694) | async def handle_magic_push(self, args): method apply (line 1720) | async def apply(self, code, silent, store_history, user_expressions, a... class Put_Magic (line 1736) | class Put_Magic(SoS_Magic): method __init__ (line 1739) | def __init__(self, kernel): method get_parser (line 1742) | def get_parser(self): method apply (line 1769) | async def apply(self, code, silent, store_history, user_expressions, a... class Render_Magic (line 1789) | class Render_Magic(SoS_Magic): method __init__ (line 1792) | def __init__(self, kernel): method get_parser (line 1795) | def get_parser(self): method apply (line 1821) | async def apply(self, code, silent, store_history, user_expressions, a... class Runfile_Magic (line 1863) | class Runfile_Magic(SoS_Magic): method __init__ (line 1866) | def __init__(self, kernel): method get_parser (line 1869) | def get_parser(self): method apply (line 1880) | async def apply(self, code, silent, store_history, user_expressions, a... class Revisions_Magic (line 1935) | class Revisions_Magic(SoS_Magic): method __init__ (line 1938) | def __init__(self, kernel): method get_parser (line 1941) | def get_parser(self): method handle_magic_revisions (line 1971) | async def handle_magic_revisions(self, args, unknown_args): method apply (line 2057) | async def apply(self, code, silent, store_history, user_expressions, a... class Run_Magic (line 2073) | class Run_Magic(SoS_Magic): method __init__ (line 2076) | def __init__(self, kernel): method get_parser (line 2079) | def get_parser(self): method apply (line 2089) | async def apply(self, code, silent, store_history, user_expressions, a... class Sandbox_Magic (line 2144) | class Sandbox_Magic(SoS_Magic): method __init__ (line 2147) | def __init__(self, kernel): method get_parser (line 2150) | def get_parser(self): method apply (line 2179) | async def apply(self, code, silent, store_history, user_expressions, a... class Save_Magic (line 2227) | class Save_Magic(SoS_Magic): method __init__ (line 2230) | def __init__(self, kernel): method get_parser (line 2233) | def get_parser(self): method apply (line 2269) | async def apply(self, code, silent, store_history, user_expressions, a... class SessionInfo_Magic (line 2322) | class SessionInfo_Magic(SoS_Magic): method __init__ (line 2325) | def __init__(self, kernel): method get_parser (line 2328) | def get_parser(self): method handle_sessioninfo (line 2347) | async def handle_sessioninfo(self, args): method prepare_string (line 2428) | def prepare_string(self, item): method apply (line 2437) | async def apply(self, code, silent, store_history, user_expressions, a... class Set_Magic (line 2450) | class Set_Magic(SoS_Magic): method __init__ (line 2453) | def __init__(self, kernel): method apply (line 2456) | async def apply(self, code, silent, store_history, user_expressions, a... class Shutdown_Magic (line 2465) | class Shutdown_Magic(SoS_Magic): method __init__ (line 2468) | def __init__(self, kernel): method get_parser (line 2471) | def get_parser(self): method apply (line 2487) | async def apply(self, code, silent, store_history, user_expressions, a... class SoSRun_Magic (line 2502) | class SoSRun_Magic(SoS_Magic): method __init__ (line 2505) | def __init__(self, kernel): method get_parser (line 2508) | def get_parser(self): method apply (line 2520) | async def apply(self, code, silent, store_history, user_expressions, a... class SoSSave_Magic (line 2561) | class SoSSave_Magic(SoS_Magic): method __init__ (line 2564) | def __init__(self, kernel): method get_parser (line 2567) | def get_parser(self): method apply (line 2628) | async def apply(self, code, silent, store_history, user_expressions, a... class Task_Magic (line 2717) | class Task_Magic(SoS_Magic): method __init__ (line 2720) | def __init__(self, kernel): method get_parser (line 2723) | def get_parser(self): method status (line 2945) | def status(self, args): method execute (line 3013) | def execute(self, args): method kill (line 3033) | def kill(self, args): method purge (line 3073) | def purge(self, args): method apply (line 3123) | async def apply(self, code, silent, store_history, user_expressions, a... class Tasks_Magic (line 3138) | class Tasks_Magic(SoS_Magic): method __init__ (line 3141) | def __init__(self, kernel): method get_parser (line 3144) | def get_parser(self): method handle_tasks (line 3175) | def handle_tasks(self, tasks, queue="localhost", status=None, age=None): method apply (line 3197) | async def apply(self, code, silent, store_history, user_expressions, a... class Toc_Magic (line 3213) | class Toc_Magic(SoS_Magic): method __init__ (line 3216) | def __init__(self, kernel): method apply (line 3219) | async def apply(self, code, silent, store_history, user_expressions, a... class Use_Magic (line 3227) | class Use_Magic(SoS_Magic): method __init__ (line 3230) | def __init__(self, kernel): method get_parser (line 3233) | def get_parser(self): method apply (line 3283) | async def apply(self, code, silent, store_history, user_expressions, a... class With_Magic (line 3314) | class With_Magic(SoS_Magic): method __init__ (line 3317) | def __init__(self, kernel): method get_parser (line 3320) | def get_parser(self): method apply (line 3347) | async def apply(self, code, silent, store_history, user_expressions, a... class SoS_Magics (line 3374) | class SoS_Magics: method __init__ (line 3411) | def __init__(self, kernel=None): method get (line 3414) | def get(self, name): method values (line 3417) | def values(self): FILE: src/sos_notebook/step_executor.py class Interactive_Step_Executor (line 13) | class Interactive_Step_Executor(Base_Step_Executor): method __init__ (line 14) | def __init__(self, step, mode="interactive"): method init_input_output_vars (line 19) | def init_input_output_vars(self): method submit_tasks (line 41) | def submit_tasks(self, tasks): method wait_for_tasks (line 55) | def wait_for_tasks(self, tasks, all_submitted): method run (line 96) | def run(self): method log (line 105) | def log(self, stage=None, msg=None): method wait_for_subworkflows (line 125) | def wait_for_subworkflows(self, workflow_results): method handle_unknown_target (line 129) | def handle_unknown_target(self, e): method verify_dynamic_targets (line 134) | def verify_dynamic_targets(self, targets): FILE: src/sos_notebook/subkernel.py class subkernel (line 7) | class subkernel: method __init__ (line 9) | def __init__( method __repr__ (line 27) | def __repr__(self): class Subkernels (line 31) | class Subkernels: method __init__ (line 33) | def __init__(self, kernel): method kernel_list (line 125) | def kernel_list(self): method add_or_replace (line 152) | def add_or_replace(self, kdef): method get_background_color (line 160) | def get_background_color(self, plugin, lan): method find (line 171) | def find( method update (line 475) | def update(self, notebook_kernel_list): method notify_frontend (line 493) | def notify_frontend(self): FILE: src/sos_notebook/templates/sos-cm/parts/sos-mode.js function findMode (line 122) | function findMode(mode) { function findModeFromFilename (line 129) | function findModeFromFilename(filename) { function markExpr (line 140) | function markExpr(python_mode) { FILE: src/sos_notebook/templates/sos-lab-cm/parts/sos-mode.js function findMode (line 122) | function findMode(mode) { function findModeFromFilename (line 129) | function findModeFromFilename(filename) { function markExpr (line 140) | function markExpr(python_mode) { FILE: src/sos_notebook/test_utils.py function start_new_kernel (line 26) | def start_new_kernel(kernel_name="python3"): function sos_kernel (line 42) | def sos_kernel(): function flush_channels (line 52) | def flush_channels(kc=None): function start_sos_kernel (line 64) | def start_sos_kernel(): function stop_sos_kernel (line 75) | def stop_sos_kernel(): function get_result (line 86) | def get_result(iopub): function _async_get_result (line 91) | async def _async_get_result(iopub): function get_display_data (line 117) | def get_display_data(iopub, data_type="text/plain"): function _async_get_display_data (line 122) | async def _async_get_display_data(iopub, data_type): function clear_channels (line 143) | def clear_channels(iopub): function _async_clear_channels (line 148) | async def _async_clear_channels(iopub): function get_std_output (line 157) | def get_std_output(iopub): class NotebookTest (line 187) | class NotebookTest: class Notebook (line 191) | class Notebook: method __init__ (line 198) | def __init__(self, kernel_client=None): method _execute_and_collect (line 202) | def _execute_and_collect(self, code): method _switch_kernel (line 242) | def _switch_kernel(self, kernel): method check_output (line 248) | def check_output(self, code, kernel="SoS"): method call (line 257) | def call(self, code, kernel="SoS"): method save (line 263) | def save(self): method get_input_backgroundColor (line 266) | def get_input_backgroundColor(self, idx=0): method get_cell_output (line 270) | def get_cell_output(self, idx=0): FILE: src/sos_notebook/workflow_executor.py class NotebookLoggingHandler (line 29) | class NotebookLoggingHandler(logging.Handler): method __init__ (line 30) | def __init__(self, level, kernel=None, title="Log Messages"): method setTitle (line 35) | def setTitle(self, title): method emit (line 38) | def emit(self, record): function start_controller (line 55) | def start_controller(kernel): function stop_controller (line 69) | def stop_controller(controller): function execute_scratch_cell (line 81) | def execute_scratch_cell(code, raw_args, kernel): class Tapped_Executor (line 216) | class Tapped_Executor(mp.Process): method __init__ (line 217) | def __init__(self, code, args, config): method run (line 224) | def run(self): function run_next_workflow_in_queue (line 304) | def run_next_workflow_in_queue(): function execute_pending_workflow (line 323) | def execute_pending_workflow(cell_ids, kernel): function run_sos_workflow (line 335) | def run_sos_workflow( function cancel_workflow (line 376) | def cancel_workflow(cell_id, kernel): FILE: tasks.py function check_tool (line 12) | def check_tool(ctx, tool_name): function format (line 25) | def format(ctx, check=False): function lint (line 51) | def lint(ctx, fix=False): function precommit (line 78) | def precommit(ctx, install=False): function test (line 90) | def test(ctx, path="", verbose=False, coverage=False): function test_docker (line 130) | def test_docker(ctx): function build (line 173) | def build(ctx, clean=False): function clean (line 185) | def clean(ctx, all=False): function install (line 217) | def install(ctx, dev=True, force=False): function check (line 234) | def check(ctx): function release_check (line 258) | def release_check(ctx): function uv_sync (line 277) | def uv_sync(ctx): function uv_lock (line 285) | def uv_lock(ctx): function venv_create (line 293) | def venv_create(ctx): function dev_setup (line 302) | def dev_setup(ctx): function help (line 333) | def help(ctx): FILE: test/conftest.py function notebook (line 15) | def notebook(): function sample_scripts (line 21) | def sample_scripts(): function sample_notebook (line 51) | def sample_notebook(): function sample_papermill_notebook (line 195) | def sample_papermill_notebook(): FILE: test/test_convert.py function test_script_to_and_from_notebook (line 13) | def test_script_to_and_from_notebook(sample_scripts): function test_convert_html (line 27) | def test_convert_html(sample_notebook): function test_convert_pdf (line 72) | def test_convert_pdf(sample_notebook, sample_papermill_notebook): function test_convert_md (line 91) | def test_convert_md(sample_notebook, sample_papermill_notebook): function test_convert_notebook (line 113) | def test_convert_notebook(sample_notebook): function test_execute_notebook (line 137) | def test_execute_notebook(sample_papermill_notebook): function test_execute_and_convert (line 159) | def test_execute_and_convert(sample_papermill_notebook): function test_comments (line 181) | def test_comments(sample_notebook): FILE: test/test_magics.py class TestMagics (line 15) | class TestMagics(NotebookTest): method test_magic_in_subkernel (line 16) | def test_magic_in_subkernel(self, notebook): method test_help_messages (line 20) | def test_help_messages(self, notebook): method test_magic_capture (line 46) | def test_magic_capture(self, notebook): method test_magic_cd (line 182) | def test_magic_cd(self, notebook): method test_magic_connectinfo (line 201) | def test_magic_connectinfo(self, notebook): method test_magic_debug (line 205) | def test_magic_debug(self, notebook): method test_magic_dict (line 215) | def test_magic_dict(self, notebook): method test_magic_expand (line 242) | def test_magic_expand(self, notebook): method test_magic_get (line 282) | def test_magic_get(self, notebook): method test_magic_get_between_subkernels (line 357) | def test_magic_get_between_subkernels(self, notebook): method test_magic_matplotlib (line 392) | def test_magic_matplotlib(self, notebook): method test_magic_render (line 410) | def test_magic_render(self, notebook): method test_magic_run (line 463) | def test_magic_run(self, notebook): method test_magic_runfile (line 511) | def test_magic_runfile(self, notebook): method test_magic_preview_dot (line 529) | def test_magic_preview_dot(self, notebook): method test_magic_preview_in_R (line 546) | def test_magic_preview_in_R(self, notebook): method test_magic_preview_png (line 555) | def test_magic_preview_png(self, notebook): method test_magic_preview_jpg (line 569) | def test_magic_preview_jpg(self, notebook): method test_magic_preview_pdf (line 585) | def test_magic_preview_pdf(self, notebook): method test_magic_preview_pdf_as_png (line 605) | def test_magic_preview_pdf_as_png(self, notebook): method test_magic_preview_var (line 626) | def test_magic_preview_var(self, notebook): method test_magic_preview_var_limit (line 635) | def test_magic_preview_var_limit(self, notebook): method test_magic_preview_csv (line 666) | def test_magic_preview_csv(self, notebook): method test_magic_preview_txt (line 681) | def test_magic_preview_txt(self, notebook): method test_magic_preview_zip (line 695) | def test_magic_preview_zip(self, notebook): method test_magic_preview_tar (line 712) | def test_magic_preview_tar(self, notebook): method test_magic_preview_tar_gz (line 726) | def test_magic_preview_tar_gz(self, notebook): method test_magic_preview_gz (line 740) | def test_magic_preview_gz(self, notebook): method test_magic_preview_md (line 756) | def test_magic_preview_md(self, notebook): method test_magic_preview_html (line 772) | def test_magic_preview_html(self, notebook): method test_magic_put (line 798) | def test_magic_put(self, notebook): method test_magic_sandbox (line 854) | def test_magic_sandbox(self, notebook): method test_magic_save (line 865) | def test_magic_save(self, notebook): method test_magic_sessioninfo (line 880) | def test_magic_sessioninfo(self, notebook): method test_magic_shell (line 918) | def test_magic_shell(self, notebook): method test_magic_convert (line 922) | def test_magic_convert(self, notebook): method test_magic_convert_sos (line 941) | def test_magic_convert_sos(self, notebook): method test_magic_convert_sos_all (line 960) | def test_magic_convert_sos_all(self, notebook): method test_magic_use (line 977) | def test_magic_use(self, notebook): method test_magic_with (line 998) | def test_magic_with(self, notebook): FILE: test/test_workflow.py class TestWorkflow (line 11) | class TestWorkflow(NotebookTest): method test_no_output (line 12) | def test_no_output(self, notebook): method test_no_signature (line 22) | def test_no_signature(self, notebook): method test_task (line 51) | def test_task(self, notebook): method test_identical_task (line 78) | def test_identical_task(self, notebook): method test_background_mode (line 101) | def test_background_mode(self, notebook): method test_warning_from_sos (line 121) | def test_warning_from_sos(self, notebook):