On 5 Aug., 21:31, Mensanator <mensana...@aol.com> wrote: > > >>> import turtle > >>> tooter = turtle.Turtle() > >>> tooter.tracer > > Traceback (most recent call last): > File "<pyshell#2>", line 1, in <module> > tooter.tracer > AttributeError: 'Turtle' object has no attribute 'tracer'>>> > tooter.hideturtle() > >>> tooter.speed('fast') > >>> turtle.update() > >>> turtle.tracer > > <function tracer at 0x013E0ED0> > > How did the tracer attribute appear out of thin air?
You seem to confuse the "tooter" Turtle object and the "turtle" module when talking about "the tracer attribute". -- http://mail.python.org/mailman/listinfo/python-list