This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author Lita.Cho
Recipients Lita.Cho
Date 2014-06-25.07:01:57
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1403679717.28.0.526098112146.issue21867@psf.upfronthosting.co.za>
In-reply-to
Content
Turtle currently has a bug where it will return a TypeError when undobuffer is set to less than or equal to 0 (aka undo is not allowed).

turtle.setundobuffer(0)
turtle.undo()


If an exception must be thrown, it should be a Turtle exception and not a TypeError. However, I also feel like if the user calls undo, nothing should happen when undobuffer is set to 0.
History
Date User Action Args
2014-06-25 07:01:57Lita.Chosetrecipients: + Lita.Cho
2014-06-25 07:01:57Lita.Chosetmessageid: <1403679717.28.0.526098112146.issue21867@psf.upfronthosting.co.za>
2014-06-25 07:01:57Lita.Cholinkissue21867 messages
2014-06-25 07:01:57Lita.Chocreate