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:10:25
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1403680225.27.0.922926576552.issue21868@psf.upfronthosting.co.za>
In-reply-to
Content
Currently, you can set the undobuffer size to negative numbers. Aka, the Tbuffer can be set to negative.

s = turtle.Screen()
raw = turtle.RawTurtle(s)
raw.setundobuffer(-10)
raw.undobuffer.bufsize == -10 <-- returns True

This should not be possible. Tbuffer should not be allowed to have negative inputs. If the value is less than 0, it should just default to 0 or None. Otherwise, when you call undo, turtle just crashes.
History
Date User Action Args
2014-06-25 07:10:25Lita.Chosetrecipients: + Lita.Cho
2014-06-25 07:10:25Lita.Chosetmessageid: <1403680225.27.0.922926576552.issue21868@psf.upfronthosting.co.za>
2014-06-25 07:10:25Lita.Cholinkissue21868 messages
2014-06-25 07:10:25Lita.Chocreate