]> granicus.if.org Git - python/commitdiff
Issue #3767: Convert Tk object to string in tkColorChooser.
authorMartin v. Löwis <martin@v.loewis.de>
Sat, 13 Dec 2008 15:09:44 +0000 (15:09 +0000)
committerMartin v. Löwis <martin@v.loewis.de>
Sat, 13 Dec 2008 15:09:44 +0000 (15:09 +0000)
Lib/lib-tk/tkColorChooser.py
Misc/NEWS

index a55a797dd498e9cd108470f41b22813e60c28c37..cf6283b357223185d725e35c1a56d2154593592b 100644 (file)
@@ -34,19 +34,22 @@ class Chooser(Dialog):
         try:
             # make sure initialcolor is a tk color string
             color = self.options["initialcolor"]
-            if type(color) == type(()):
+            if isinstance(color, tuple):
                 # assume an RGB triplet
                 self.options["initialcolor"] = "#%02x%02x%02x" % color
         except KeyError:
             pass
 
     def _fixresult(self, widget, result):
+        # result can be somethings: an empty tuple, an empty string or
+        # a Tcl_Obj, so this somewhat weird check handles that
+        if not result or not str(result):
+            return None, None # canceled
+
         # to simplify application code, the color chooser returns
         # an RGB tuple together with the Tk color string
-        if not result:
-            return None, None # canceled
         r, g, b = widget.winfo_rgb(result)
-        return (r/256, g/256, b/256), result
+        return (r/256, g/256, b/256), str(result)
 
 
 #
@@ -66,5 +69,4 @@ def askcolor(color = None, **options):
 # test stuff
 
 if __name__ == "__main__":
-
     print "color", askcolor()
index 99e385a0ebf437a2e1a04e2efd7945de43c7320d..161668e7344112b473002c77ddc34329358df8f6 100644 (file)
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -109,6 +109,8 @@ Core and builtins
 Library
 -------
 
+- Issue #3767: Convert Tk object to string in tkColorChooser.
+
 - Issue #4342: Always convert Text.index result to string.
 
 - Issue 3248: Allow placing ScrolledText in a PanedWindow.