blob: 5221c144275d61d3f59973835c4bf1ad30c8881f (
plain)
1
2
3
4
5
6
7
8
9
|
import emccanon
import interpreter
def failingepilog(self,*args, **words):
emccanon.MESSAGE("failing_epilog returning INTERP_ERROR")
self.set_errormsg("A failed Python epilog returning INTERP_ERROR")
return interpreter.INTERP_ERROR
|