Show More
@@ -213,9 +213,7 b' class ExecutionInfo(object):' | |||||
213 | raw_cell = ( |
|
213 | raw_cell = ( | |
214 | (self.raw_cell[:50] + "..") if len(self.raw_cell) > 50 else self.raw_cell |
|
214 | (self.raw_cell[:50] + "..") if len(self.raw_cell) > 50 else self.raw_cell | |
215 | ) |
|
215 | ) | |
216 | return ( |
|
216 | return '<%s object at %x, raw_cell="%s" store_history=%s silent=%s shell_futures=%s cell_id=%s>' % ( | |
217 | '<%s object at %x, raw_cell="%s" store_history=%s silent=%s shell_futures=%s cell_id=%s>' |
|
|||
218 | % ( |
|
|||
219 |
|
|
217 | name, | |
220 |
|
|
218 | id(self), | |
221 |
|
|
219 | raw_cell, | |
@@ -224,7 +222,6 b' class ExecutionInfo(object):' | |||||
224 |
|
|
222 | self.shell_futures, | |
225 |
|
|
223 | self.cell_id, | |
226 |
|
|
224 | ) | |
227 | ) |
|
|||
228 |
|
225 | |||
229 |
|
226 | |||
230 | class ExecutionResult(object): |
|
227 | class ExecutionResult(object): |
@@ -60,7 +60,7 b' def ipfunc():' | |||||
60 | In [9]: ipfunc() |
|
60 | In [9]: ipfunc() | |
61 | Out[9]: 'ipfunc' |
|
61 | Out[9]: 'ipfunc' | |
62 | """ |
|
62 | """ | |
63 |
return |
|
63 | return "ipfunc" | |
64 |
|
64 | |||
65 |
|
65 | |||
66 | def ipos(): |
|
66 | def ipos(): |
1 | NO CONTENT: modified file |
|
NO CONTENT: modified file |
General Comments 0
You need to be logged in to leave comments.
Login now