Como impedir que uma janela seja redimensionada com o tkinter?

Eu tenho um programa que cria uma janela onde uma mensagem é exibida de acordo com uma caixa de seleção.

Como posso manter o tamanho da janela constante quando a mensagem é exibida e a mensagem não é exibida?

from Tkinter import *

class App:
    def __init__(self,master):
        self.var = IntVar()
        frame = Frame(master)
        frame.grid()
        f2 = Frame(master,width=200,height=100)
        f2.grid(row=0,column=1)
        button = Checkbutton(frame,text='show',variable=self.var,command=self.fx)
        button.grid(row=0,column=0)
        msg2="""I feel bound to give them full satisfaction on this point"""
        self.v= Message(f2,text=msg2)
    def fx(self):
        if self.var.get():
            self.v.grid(column=1,row=0,sticky=N)
        else:
            self.v.grid_remove()

top = Tk()
app = App(top)            
top.mainloop()

questionAnswers(6)

yourAnswerToTheQuestion