[Python-checkins] CVS: python/dist/src/Lib/lib-tk Tkinter.py,1.139,1.140

Guido van Rossum python-dev@python.org
Wed, 5 Jul 2000 22:34:17 -0700


Update of /cvsroot/python/python/dist/src/Lib/lib-tk
In directory slayer.i.sourceforge.net:/tmp/cvs-serv14775

Modified Files:
	Tkinter.py 
Log Message:
Change whitespace in two places to silence tabnanny.
Also fix spelling tupel -> tuple.


Index: Tkinter.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/lib-tk/Tkinter.py,v
retrieving revision 1.139
retrieving revision 1.140
diff -C2 -r1.139 -r1.140
*** Tkinter.py	2000/06/29 16:30:50	1.139
--- Tkinter.py	2000/07/06 05:34:14	1.140
***************
*** 92,96 ****
  
  class Event:
!         """Container for the properties of an event.
  
  	Instances of this type are generated if one of the following events occurs:
--- 92,96 ----
  
  class Event:
! 	"""Container for the properties of an event.
  
  	Instances of this type are generated if one of the following events occurs:
***************
*** 678,687 ****
  			self.tk.call('winfo', 'pointerx', self._w))
  	def winfo_pointerxy(self):
! 		"""Return a tupel of x and y coordinates of the pointer on the root window."""
  		return self._getints(
  			self.tk.call('winfo', 'pointerxy', self._w))
  	def winfo_pointery(self):
  		"""Return the y coordinate of the pointer on the root window."""
!  		return getint(
  			self.tk.call('winfo', 'pointery', self._w))
  	def winfo_reqheight(self):
--- 678,687 ----
  			self.tk.call('winfo', 'pointerx', self._w))
  	def winfo_pointerxy(self):
! 		"""Return a tuple of x and y coordinates of the pointer on the root window."""
  		return self._getints(
  			self.tk.call('winfo', 'pointerxy', self._w))
  	def winfo_pointery(self):
  		"""Return the y coordinate of the pointer on the root window."""
! 		return getint(
  			self.tk.call('winfo', 'pointery', self._w))
  	def winfo_reqheight(self):
***************
*** 694,698 ****
  			self.tk.call('winfo', 'reqwidth', self._w))
  	def winfo_rgb(self, color):
! 		"""Return tupel of decimal values for red, green, blue for
  		COLOR in this widget."""
  		return self._getints(
--- 694,698 ----
  			self.tk.call('winfo', 'reqwidth', self._w))
  	def winfo_rgb(self, color):
! 		"""Return tuple of decimal values for red, green, blue for
  		COLOR in this widget."""
  		return self._getints(