Tkinter.Pack = class Pack
    Geometry manager Pack.
 
Base class to use the methods pack_* in every widget.
 
  Methods defined here:
config = pack_configure(self, cnf={}, **kw)
configure = pack_configure(self, cnf={}, **kw)
forget = pack_forget(self)
info = pack_info(self)
pack = pack_configure(self, cnf={}, **kw)
pack_configure(self, cnf={}, **kw)
Pack a widget in the parent widget. Use as options:
after=widget - pack it after you have packed widget
anchor=NSEW (or subset) - position widget according to
                          given direction
        before=widget - pack it before you will pack widget
expand=bool - expand widget if parent size grows
fill=NONE or X or Y or BOTH - fill widget if widget grows
in=master - use master to contain this widget
ipadx=amount - add internal padding in x direction
ipady=amount - add internal padding in y direction
padx=amount - add padding in x direction
pady=amount - add padding in y direction
side=TOP or BOTTOM or LEFT or RIGHT -  where to add this widget.
pack_forget(self)
Unmap this widget and do not use it for the packing order.
pack_info(self)
Return information about the packing options
for this widget.
pack_propagate(self, flag=['_noarg_']) from Tkinter.Misc
Set or get the status for propagation of geometry information.
 
A boolean argument specifies whether the geometry information
of the slaves will determine the size of this widget. If no argument
is given the current setting will be returned.
pack_slaves(self) from Tkinter.Misc
Return a list of all slaves of this widget
in its packing order.
propagate = pack_propagate(self, flag=['_noarg_']) from Tkinter.Misc
Set or get the status for propagation of geometry information.
 
A boolean argument specifies whether the geometry information
of the slaves will determine the size of this widget. If no argument
is given the current setting will be returned.
slaves = pack_slaves(self) from Tkinter.Misc
Return a list of all slaves of this widget
in its packing order.