@@ -54,15 +54,6 @@ class RunApp(JupyterApp, JupyterConsoleApp):
54
54
aliases = Dict (aliases )
55
55
frontend_aliases = Any (frontend_aliases )
56
56
frontend_flags = Any (frontend_flags )
57
- session_id = Unicode ()
58
- include_other_output = Bool (False , config = True ,
59
- help = """Whether to include output from clients
60
- other than this one sharing the same kernel.
61
-
62
- Outputs are not displayed until enter is pressed.
63
- """
64
- )
65
- kernel_info = {}
66
57
kernel_timeout = Float (60 , config = True ,
67
58
help = """Timeout for giving up on a kernel (in seconds).
68
59
@@ -80,7 +71,7 @@ def parse_command_line(self, argv=None):
80
71
81
72
@catch_config_error
82
73
def initialize (self , argv = None ):
83
- self .log .debug ("jupyter run initialize..." )
74
+ self .log .debug ("jupyter run: initialize..." )
84
75
super (RunApp , self ).initialize (argv )
85
76
JupyterConsoleApp .initialize (self )
86
77
signal .signal (signal .SIGINT , self .handle_sigint )
@@ -111,10 +102,10 @@ def init_kernel_info(self):
111
102
return
112
103
113
104
def start (self ):
114
- self .log .debug ("jupyter run start ..." )
105
+ self .log .debug ("jupyter run: starting ..." )
115
106
super (RunApp , self ).start ()
116
107
for filename in self .filenames_to_run :
117
- self .log .debug ("jupyter run: running `%s`" % filename )
108
+ self .log .debug ("jupyter run: executing `%s`" % filename )
118
109
cell = open (filename ).read ()
119
110
self .run_cell (cell )
120
111
0 commit comments