I got this Text
widget, and I'd like for it to expand and fill its entire parent, using the Grid geometry manager.
According to the examples I've seen, this sample program should work, alas it doesn't, when expanding the window, the contents are not resizing.
from Tkinter import *
root = Tk()
input_text_area = Text(root)
input_text_area.grid(row=1, column=0, columnspan=4, sticky=W+E)
input_text_area.configure(background='#4D4D4D')
root.mainloop()
Any help is appreciated
For what it's worth, I'm running in Python 2.7 (latest 2.x version), and coding in PyCharm, though I don't think the IDE is relevant.