Re: [Tutor] serious problem with graphics module

2009-06-04 Thread Gregor Lingl
Alan Gauld schrieb: W W sri...@gmail.com 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

Re: [Tutor] serious problem with graphics module

2009-06-04 Thread Kent Johnson
On Wed, Jun 3, 2009 at 5:51 PM, W Wsri...@gmail.com 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

Re: [Tutor] serious problem with graphics module

2009-06-04 Thread W W
On Thu, Jun 4, 2009 at 7:47 PM, Kent Johnson ken...@tds.net wrote: On Wed, Jun 3, 2009 at 5:51 PM, W Wsri...@gmail.com 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

Re: [Tutor] serious problem with graphics module

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

Re: [Tutor] serious problem with graphics module

2009-06-03 Thread Alan Gauld
W W sri...@gmail.com 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

Re: [Tutor] serious problem with graphics module

2009-06-02 Thread roberto
On Tue, May 26, 2009 at 12:28 AM, Gregor Lingl gregor.li...@aon.at 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

Re: [Tutor] serious problem with graphics module

2009-06-02 Thread roberto
On Tue, May 26, 2009 at 12:45 AM, Gregor Lingl gregor.li...@aon.at 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

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 gregor.li...@aon.at 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

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 gregor.li...@aon.at 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

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:

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,

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

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

[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 some hint ?