We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e213664 commit 3c652deCopy full SHA for 3c652de
ipykernel/tests/test_message_spec.py
@@ -114,6 +114,8 @@ def check(self, d):
114
ExecuteReplyOkay().check(d)
115
elif d['status'] == 'error':
116
ExecuteReplyError().check(d)
117
+ elif d['status'] == 'aborted':
118
+ ExecuteReplyAborted().check(d)
119
120
121
class ExecuteReplyOkay(Reply):
@@ -122,11 +124,16 @@ class ExecuteReplyOkay(Reply):
122
124
123
125
126
class ExecuteReplyError(Reply):
127
+ status = Enum(('error',))
128
ename = Unicode()
129
evalue = Unicode()
130
traceback = List(Unicode())
131
132
133
+class ExecuteReplyAborted(Reply):
134
+ status = Enum(('aborted',))
135
+
136
137
class InspectReply(Reply, MimeBundle):
138
found = Bool()
139
0 commit comments