Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/TurtleArt/taconstants.py
diff options
context:
space:
mode:
authorWalter Bender <walter.bender@gmail.com>2011-02-22 21:56:17 (GMT)
committer Walter Bender <walter.bender@gmail.com>2011-02-22 21:56:17 (GMT)
commit27168043cf6d4d94a5b2071e53ad8e6cc22381bc (patch)
treed61106528269a4c2c8291d5280dbb9db164288e0 /TurtleArt/taconstants.py
parent169d3c405863525a71fd00c22049b33441db5300 (diff)
added offset to second argument of boolean compares >, <
Diffstat (limited to 'TurtleArt/taconstants.py')
-rw-r--r--TurtleArt/taconstants.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/TurtleArt/taconstants.py b/TurtleArt/taconstants.py
index f5d97ad..f383105 100644
--- a/TurtleArt/taconstants.py
+++ b/TurtleArt/taconstants.py
@@ -226,7 +226,8 @@ NUMBER_STYLE_BLOCK = ['random']
NUMBER_STYLE_PORCH = ['minus2', 'division2', 'remainder2']
NUMBER_STYLE_1ARG = ['sqrt', 'identity2']
NUMBER_STYLE_1STRARG = ['box']
-COMPARE_STYLE = ['greater2', 'less2', 'equal2']
+COMPARE_STYLE = ['equal2']
+COMPARE_PORCH_STYLE = ['greater2', 'less2']
BOOLEAN_STYLE = ['and2', 'or2']
NOT_STYLE = ['not']
FLOW_STYLE = ['forever']