Re: [Tutor] serious problem with graphics module

2009-06-04 Thread W W
On Thu, Jun 4, 2009 at 7:47 PM, Kent Johnson wrote: > On Wed, Jun 3, 2009 at 5:51 PM, W W wrote: > > > Do you (or sombody else) know how to get ipython working with Python 2.6 > > (you know, > > the Python release, which has that new turtle module ;-) ) > > > > doesn't install on my Windows box

Re: [Tutor] serious problem with graphics module

2009-06-04 Thread Kent Johnson
On Wed, Jun 3, 2009 at 5:51 PM, W W wrote: > Do you (or sombody else) know how to get ipython working with Python 2.6 > (you know, > the Python release, which has that new turtle module ;-)   ) > > doesn't install on my Windows box... other than that I've got no experience > with it What trouble

Re: [Tutor] serious problem with graphics module

2009-06-04 Thread Gregor Lingl
Alan Gauld schrieb: "W W" wrote Do you (or sombody else) know how to get ipython working with Python 2.6 (you know, the Python release, which has that new turtle module ;-) ) doesn't install on my Windows box... other than that I've got no experience with it I thought the new turtle

Re: [Tutor] serious problem with graphics module

2009-06-03 Thread Alan Gauld
"W W" wrote Do you (or sombody else) know how to get ipython working with Python 2.6 (you know, the Python release, which has that new turtle module ;-) ) doesn't install on my Windows box... other than that I've got no experience with it I thought the new turtle module could be made to

Re: [Tutor] serious problem with graphics module

2009-06-03 Thread W W
Forwarding on to the list... -- Forwarded message -- From: Gregor Lingl Date: Wed, Jun 3, 2009 at 3:46 PM Subject: Re: [Tutor] serious problem with graphics module To: W W W W schrieb: > On Tue, Jun 2, 2009 at 7:12 PM, Gregor Lingl gregor.li...@aon.at>&

Re: [Tutor] serious problem with graphics module

2009-06-02 Thread W W
On Tue, Jun 2, 2009 at 7:12 PM, Gregor Lingl wrote: > > Does anyone have experience with using IPython with Tkinter? Plenty, and it works wonderfully. I've never had any errors (that I know of) that weren't of my own making ;) My personal development environment consists of ipython for trying

Re: [Tutor] serious problem with graphics module

2009-06-02 Thread Gregor Lingl
Lie Ryan schrieb: roberto wrote: On Tue, May 26, 2009 at 12:45 AM, Gregor Lingl wrote: I know one situation in which can happen what you describe: ... ok, it works all right now the minor issue is that i could not create the shortcut with the -n flag as you pointed out, tha

Re: [Tutor] serious problem with graphics module

2009-06-02 Thread Lie Ryan
roberto wrote: > On Tue, May 26, 2009 at 12:45 AM, Gregor Lingl wrote: >> I know one situation in which can happen what you describe: >> >> If you use IDLE, issue the above commands and your Idle-shell-window >> covers the graphics window - then you have to move the shell window in order >> to see

Re: [Tutor] serious problem with graphics module

2009-06-02 Thread roberto
On Tue, May 26, 2009 at 12:45 AM, Gregor Lingl wrote: > I know one situation in which can happen what you describe: > > If you use IDLE, issue the above commands and your Idle-shell-window > covers the graphics window - then you have to move the shell window in order > to see what's on the graphic

Re: [Tutor] serious problem with graphics module

2009-06-02 Thread roberto
On Tue, May 26, 2009 at 12:28 AM, Gregor Lingl wrote: > > > roberto schrieb: > Do you use Python from the command line (terminal) or do you use IDLE? > I ask this, because these two show different behaviour. i use IDLE, in Python 3.0 >> >> i have a problem with python 3.0 graphics module: >> >> n

Re: [Tutor] serious problem with graphics module

2009-05-25 Thread Gregor Lingl
roberto schrieb: hello everyone Hello Roberto, First question: Do you use Python from the command line (terminal) or do you use IDLE? I ask this, because these two show different behaviour. i have a problem with python 3.0 graphics module: no problem while importing the module impor

Re: [Tutor] serious problem with graphics module

2009-05-25 Thread Gregor Lingl
bob gailer schrieb: roberto wrote: hello everyone i have a problem with python 3.0 graphics module: no problem while importing the module import turtle but when i issue any command like: t = turtle.pen() t = turtle.forward(60) Your code fails for me at turtle.pen A

Re: [Tutor] serious problem with graphics module

2009-05-25 Thread Gregor Lingl
roberto schrieb: hello everyone i have a problem with python 3.0 graphics module: no problem while importing the module import turtle but when i issue any command like: t = turtle.pen() t = turtle.forward(60) nothing appears on the screen, only a blank window, wit

Re: [Tutor] serious problem with graphics module

2009-05-25 Thread bob gailer
roberto wrote: hello everyone i have a problem with python 3.0 graphics module: no problem while importing the module import turtle but when i issue any command like: t = turtle.pen() t = turtle.forward(60) Your code fails for me at turtle.pen AttributeError: 'modul

[Tutor] serious problem with graphics module

2009-05-24 Thread roberto
hello everyone i have a problem with python 3.0 graphics module: no problem while importing the module >>> import turtle but when i issue any command like: >>> t = turtle.pen() >>> t = turtle.forward(60) nothing appears on the screen, only a blank window, with nothing inside; may you give me som