Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/turtleblocks.py
diff options
context:
space:
mode:
authorMarion <marion.zepf@gmail.com>2013-07-24 21:03:05 (GMT)
committer Marion <marion.zepf@gmail.com>2013-07-24 21:03:05 (GMT)
commit87891fc2ce48f443a303bbae50ff649550b0362b (patch)
treea1b7bcebe2abd9bb3195bd82a95fff864fb70933 /turtleblocks.py
parent952e46d480ba7c091e35962ecf9295fe1b02b31f (diff)
parentacb61a37f56038c51f88e7cf7029a7295c307eb5 (diff)
Merge branch 'master' into primitive-class
Conflicts: TurtleArt/tablock.py -- accept all changes from master (1 change)
Diffstat (limited to 'turtleblocks.py')
-rwxr-xr-xturtleblocks.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/turtleblocks.py b/turtleblocks.py
index 02e1aae..d5dca1c 100755
--- a/turtleblocks.py
+++ b/turtleblocks.py
@@ -756,6 +756,10 @@ Would you like to save before quitting?'))
else:
return os.path.abspath(dirname)
+ def restore_state(self):
+ ''' Anything that needs restoring after a clear screen can go here '''
+ pass
+
if __name__ == '__main__':
TurtleMain()