[Python-checkins] CVS: python/dist/src/Tools/pynche pyColorChooser.py,2.6,2.7

Barry Warsaw bwarsaw@users.sourceforge.net
Tue, 10 Jul 2001 14:45:29 -0700


Update of /cvsroot/python/python/dist/src/Tools/pynche
In directory usw-pr-cvs1:/tmp/cvs-serv31045

Modified Files:
	pyColorChooser.py 
Log Message:
Update a comment.


Index: pyColorChooser.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Tools/pynche/pyColorChooser.py,v
retrieving revision 2.6
retrieving revision 2.7
diff -C2 -r2.6 -r2.7
*** pyColorChooser.py	2001/02/01 20:52:08	2.6
--- pyColorChooser.py	2001/07/10 21:45:27	2.7
***************
*** 6,9 ****
--- 6,11 ----
  import ColorDB
  
+ 
+ 
  class Chooser:
      """Ask for a color"""
***************
*** 55,60 ****
          if self.__sb.canceled_p():
              return None, None
!         # try to return the color name from the database if there is an exact
!         # match, otherwise use the "#rrggbb" spec.  TBD: Forget about color
          # aliases for now, maybe later we should return these too.
          name = None
--- 57,62 ----
          if self.__sb.canceled_p():
              return None, None
!         # Try to return the color name from the database if there is an exact
!         # match, otherwise use the "#rrggbb" spec.  BAW: Forget about color
          # aliases for now, maybe later we should return these too.
          name = None