[Python-checkins] CVS: python/dist/src/Lib/lib-tk Tix.py,1.3,1.4

Martin v. L?wis loewis@users.sourceforge.net
Tue, 09 Oct 2001 04:50:57 -0700


Update of /cvsroot/python/python/dist/src/Lib/lib-tk
In directory usw-pr-cvs1:/tmp/cvs-serv30068

Modified Files:
	Tix.py 
Log Message:
Add entry parameter to HList.item_cget. Fixes bug #466981.


Index: Tix.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/lib-tk/Tix.py,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** Tix.py	2001/08/13 14:12:35	1.3
--- Tix.py	2001/10/09 11:50:55	1.4
***************
*** 731,736 ****
         return self.tk.splitlist(c)
  
!     def item_cget(self,  col, opt):
!        return self.tk.call(self._w, 'item', 'cget', col, opt)
   
      def item_configure(self, entry, col, cnf={}, **kw):
--- 731,736 ----
         return self.tk.splitlist(c)
  
!     def item_cget(self, entry, col, opt):
!        return self.tk.call(self._w, 'item', 'cget', entry, col, opt)
   
      def item_configure(self, entry, col, cnf={}, **kw):