I'm running 2.4.4 using gentoo. I've compiled python with Tk. (USE="tk" in /etc/make.cont)
I can not get "turtle.setup(width=800,height=600,startx=400,starty=300)"
to set the screen size.
Any ideas? Is there another way to set the screen size?
? cdub
import Tkinter
import turtle
turtle.setup(width=800,height=600,startx=400,starty=300)
turtle.down()
turtle.right(30)
turtle.forward(100)