I have a problem:
How to insert raise in Text()?
for example i have file:
#my_program.py
a=ddd
and other file:
#my_file.py:
from Tkinter import*
root=Tk()
text=Text()
text.pack()
execfile('my_program.py')
#text.insert(END,raise)
mainloop()
In file my_program is Error. How to insert raise of this error in Text?
thanks