(*args)
| 112 | |
| 113 | |
| 114 | def write_err(*args): |
| 115 | py_db = get_global_debugger() |
| 116 | if py_db is not None: |
| 117 | new_lst = [] |
| 118 | for a in args: |
| 119 | new_lst.append(str(a)) |
| 120 | |
| 121 | msg = " ".join(new_lst) |
| 122 | s = "code reload: %s\n" % (msg,) |
| 123 | cmd = py_db.cmd_factory.make_io_message(s, 2) |
| 124 | if py_db.writer is not None: |
| 125 | py_db.writer.add_command(cmd) |
| 126 | |
| 127 | |
| 128 | def notify_info0(*args): |
no test coverage detected