Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.lang.python > #19712 > unrolled thread

Buffering in Wing and IDLE 3

Started byFranck Ditter <franck@ditter.org>
First post2012-02-01 16:17 +0100
Last post2012-03-08 20:15 +0100
Articles 5 — 4 participants

Back to article view | Back to comp.lang.python


Contents

  Buffering in Wing and IDLE 3 Franck Ditter <franck@ditter.org> - 2012-02-01 16:17 +0100
    Re: Buffering in Wing and IDLE 3 Terry Reedy <tjreedy@udel.edu> - 2012-02-01 15:01 -0500
      Re: Buffering in Wing and IDLE 3 Kevin Walzer <kw@codebykevin.com> - 2012-02-01 18:42 -0500
        Re: Buffering in Wing and IDLE 3 Ned Deily <nad@acm.org> - 2012-03-04 17:45 -0800
          Re: Buffering in Wing and IDLE 3 Franck Ditter <franck@ditter.org> - 2012-03-08 20:15 +0100

#19712 — Buffering in Wing and IDLE 3

FromFranck Ditter <franck@ditter.org>
Date2012-02-01 16:17 +0100
SubjectBuffering in Wing and IDLE 3
Message-ID<franck-1D8761.16173901022012@news.free.fr>
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 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)...

    franck

[toc] | [next] | [standalone]


#19738

FromTerry Reedy <tjreedy@udel.edu>
Date2012-02-01 15:01 -0500
Message-ID<mailman.5320.1328126705.27778.python-list@python.org>
In reply to#19712
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 about 
it as the problem is with tcl/tk and Apple. A couple of days ago, Kevin 
Walzer wrote on an IDLE-sig post "I'm currently reviewing an updated 
patch to address the problem. When I commit the patch, it will go into 
both Tk's trunk and in the Cocoa 8.5 backport, and eventually be 
available through ActiveState's distribution."

-- 
Terry Jan Reedy

[toc] | [prev] | [next] | [standalone]


#19752

FromKevin Walzer <kw@codebykevin.com>
Date2012-02-01 18:42 -0500
Message-ID<jgcikg$lhe$1@dont-email.me>
In reply to#19738
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 problem but cannot directly do anything about
> it as the problem is with tcl/tk and Apple. A couple of days ago, Kevin
> Walzer wrote on an IDLE-sig post "I'm currently reviewing an updated
> patch to address the problem. When I commit the patch, it will go into
> both Tk's trunk and in the Cocoa 8.5 backport, and eventually be
> available through ActiveState's distribution."
>
And it's been committed:

http://core.tcl.tk/tk/info/9844fe10b9

--Kevin

-- 
Kevin Walzer
Code by Kevin
http://www.codebykevin.com

[toc] | [prev] | [next] | [standalone]


#21210

FromNed Deily <nad@acm.org>
Date2012-03-04 17:45 -0800
Message-ID<mailman.390.1330912210.3037.python-list@python.org>
In reply to#19752
In article <jgcikg$lhe$1@dont-email.me>,
 Kevin Walzer <kw@codebykevin.com> 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 (probably the same in Europe)...
> >
> > We are quite aware of the problem but cannot directly do anything about
> > it as the problem is with tcl/tk and Apple. A couple of days ago, Kevin
> > Walzer wrote on an IDLE-sig post "I'm currently reviewing an updated
> > patch to address the problem. When I commit the patch, it will go into
> > both Tk's trunk and in the Cocoa 8.5 backport, and eventually be
> > available through ActiveState's distribution."
> >
> And it's been committed:
> 
> http://core.tcl.tk/tk/info/9844fe10b9

... and released in ActiveState 8.5.11.1

    http://www.activestate.com/activetcl/downloads

-- 
 Ned Deily,
 nad@acm.org

[toc] | [prev] | [next] | [standalone]


#21394

FromFranck Ditter <franck@ditter.org>
Date2012-03-08 20:15 +0100
Message-ID<franck-AEDF68.20150908032012@news.free.fr>
In reply to#21210
In article <mailman.390.1330912210.3037.python-list@python.org>,
 Ned Deily <nad@acm.org> 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

[toc] | [prev] | [standalone]


Back to top | Article view | comp.lang.python


csiph-web