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 belopolsky
Recipients belopolsky, docs@python, eric.araujo, georg.brandl, gregorlingl, terry.reedy
Date 2010-10-29.18:29:20
SpamBayes Score 0.0021479318
Marked as misclassified No
Message-id <1288376970.68.0.96421020893.issue7061@psf.upfronthosting.co.za>
In-reply-to
Content
As I suspected, the turtle.shapetransform() stems from sphinx' failure to reinitialize the turtle variable as testsetup dictates.  I can work around this by adding 

      >>> turtle = Turtle()

above

      >>> turtle.shape("square")
      >>> turtle.shapesize(4,2)
      >>> turtle.shearfactor(-0.5)
      >>> turtle.shapetransform()
      (4.0, -1.0, -0.0, 2.0)

but I don't think it is a good idea to pollute the documentation this way.
History
Date User Action Args
2010-10-29 18:29:30belopolskysetrecipients: + belopolsky, georg.brandl, terry.reedy, gregorlingl, eric.araujo, docs@python
2010-10-29 18:29:30belopolskysetmessageid: <1288376970.68.0.96421020893.issue7061@psf.upfronthosting.co.za>
2010-10-29 18:29:21belopolskylinkissue7061 messages
2010-10-29 18:29:20belopolskycreate