]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Make the color for stderr red (i.e. the standard warning/danger/stop
authorGuido van Rossum <guido@python.org>
Sat, 10 Jul 1999 13:17:35 +0000 (13:17 +0000)
committerGuido van Rossum <guido@python.org>
Sat, 10 Jul 1999 13:17:35 +0000 (13:17 +0000)
color) rather than green.  Suggested by Sam Schulenburg.

Tools/idle/IdlePrefs.py

index 33803c0d0d0ad1374c0170d24b06f2f0f4159b25..e761ba0250b7fb3d306f50717f47e2a4a9dab879 100644 (file)
@@ -13,7 +13,7 @@ class ColorPrefs:
     CHit        = "#ffffff", "#000000"
     CStdIn      = None, None            # None, "yellow"
     CStdOut     = "blue", None
-    CStdErr     = "#007700", None
+    CStdErr     = "red", None
     CConsole    = "#770000", None
     CError      = None, "#ff7777"
     CCursor     = None, "black"