In article ,
Ned Deily wrote:
> http://www.activestate.com/activetcl/downloads
GREAT ! It seems to work.
At least, I can now get the ~ char in France from within IDLE.
A big step for manking :-)
Thanks folks,
franck
--
http://mail.python.org/mailman/listinfo/python-list
In article ,
Kevin Walzer wrote:
> On 2/1/12 3:01 PM, Terry Reedy wrote:
> > On 2/1/2012 10:17 AM, Franck Ditter wrote:
> >
> >> I would prefer to use IDLE but as we are in France, the Python team
> >> does not seem to be aware that the ~ and others are not available
> >> on MacOS-X here (probabl
On 2/1/12 3:01 PM, Terry Reedy wrote:
On 2/1/2012 10:17 AM, Franck Ditter wrote:
I would prefer to use IDLE but as we are in France, the Python team
does not seem to be aware that the ~ and others are not available
on MacOS-X here (probably the same in Europe)...
We are quite aware of the pro
On 2/1/2012 10:17 AM, Franck Ditter wrote:
I would prefer to use IDLE but as we are in France, the Python team
does not seem to be aware that the ~ and others are not available
on MacOS-X here (probably the same in Europe)...
We are quite aware of the problem but cannot directly do anything ab
Hi,
I'm using Python 3.2.x with beginners.
If I try the following in IDLE 3, it works as expected :
from time import sleep
import sys
for i in range(4) :
sys.stdout.write(str(i))
sys.stdout.flush()
sleep(1)
but with Wing-101, it write 0123 after the total sleep time.
Why ???
I would