I'm trying to add a feature in python that copies the entire contents of two text widgets. How would one go about that?
Pseudo Code:
text1.SelectAll()
C1 = text1.get(Copy)
text2.SelectAll()
C2 = text2.get(Copy)
Paste('Widget 1:\n\n' + C1 + 'Widget 2:\n\n' + C2 )