Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/TurtleArt/taprimitive.py
diff options
context:
space:
mode:
authorMarion <marion.zepf@gmail.com>2013-08-31 17:05:51 (GMT)
committer Marion <marion.zepf@gmail.com>2013-08-31 17:05:51 (GMT)
commitb824b27903c7fb01e1880551a0d8ed1eea187bf4 (patch)
tree536bdea70f059c9aa6c767a496cc5075eefa420c /TurtleArt/taprimitive.py
parent8076e1880999823d3c5df393431a419b3f9780c2 (diff)
parente108487cff19177002f60f1d754f9a205fb91d15 (diff)
update Primitive of 'setxy' block; Merge mainline/master into type-system
Conflicts: TurtleArt/tabasics.py -- replace Primitive for 'setxy' block with a completely new one (i.e. reject both versions) - Also add a Primitive for the deprecated version of the 'setxy' block.
Diffstat (limited to 'TurtleArt/taprimitive.py')
-rw-r--r--TurtleArt/taprimitive.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/TurtleArt/taprimitive.py b/TurtleArt/taprimitive.py
index d664080..e09963b 100644
--- a/TurtleArt/taprimitive.py
+++ b/TurtleArt/taprimitive.py
@@ -58,7 +58,7 @@ class Primitive(object):
but that can also be transformed into a Python AST.
"""
- _DEBUG = False
+ _DEBUG = True
STANDARD_OPERATORS = {'plus': (ast.UAdd, ast.Add),
'minus': (ast.USub, ast.Sub),