]> granicus.if.org Git - python/commitdiff
fixed bool browsing bug, sf bug #652591
authorJust van Rossum <just@letterror.com>
Fri, 13 Dec 2002 10:58:10 +0000 (10:58 +0000)
committerJust van Rossum <just@letterror.com>
Fri, 13 Dec 2002 10:58:10 +0000 (10:58 +0000)
Mac/Tools/IDE/PyBrowser.py

index 0e9b5e81bcf72cab342266b2e58b279fac8a5e49..c92b0ca69f8e621f1c68eab50e702818fd652845 100644 (file)
@@ -504,6 +504,7 @@ class Browser:
 SIMPLE_TYPES = (
        type(None),
        int,
+       bool,
        long,
        float,
        complex,