##// END OF EJS Templates
correct keys in pyerr messages
MinRK -
Show More
@@ -353,8 +353,8 b" When status is 'ok', the following extra fields are present::"
353 When status is 'error', the following extra fields are present::
353 When status is 'error', the following extra fields are present::
354
354
355 {
355 {
356 'exc_name' : str, # Exception name, as a string
356 'ename' : str, # Exception name, as a string
357 'exc_value' : str, # Exception value, as a string
357 'evalue' : str, # Exception value, as a string
358
358
359 # The traceback will contain a list of frames, represented each as a
359 # The traceback will contain a list of frames, represented each as a
360 # string. For now we'll stick to the existing design of ultraTB, which
360 # string. For now we'll stick to the existing design of ultraTB, which
@@ -847,7 +847,7 b' Message type: ``crash``::'
847
847
848 content = {
848 content = {
849 # Similarly to the 'error' case for execute_reply messages, this will
849 # Similarly to the 'error' case for execute_reply messages, this will
850 # contain exc_name, exc_type and traceback fields.
850 # contain ename, etype and traceback fields.
851
851
852 # An additional field with supplementary information such as where to
852 # An additional field with supplementary information such as where to
853 # send the crash message
853 # send the crash message
General Comments 0
You need to be logged in to leave comments. Login now