On Thu, 28 Feb 2008 15:04:38 -0500, Ethan Metsger <[EMAIL PROTECTED]>  
wrote:

>
> I can reproduce the issue in the console.  I'm not convinced it's  
> actually
> a bug, unless for some reason the interpreter is preventing a buffer  
> flush.

Quick question.

Having eliminated some of the other variables in my code, I'm wondering if  
the following might cause a problem flushing the stdout buffer:

    proc = Popen (['ant'] + self.args, stdout=PIPE, stderr=PIPE)
    (out, err) = proc.communicate()

Is it possible that the Popen object has somehow mangled things?


For what it's worth, I'm also passing '-u' to the interpreter with no  
effect.

Best,

Ethan ([EMAIL PROTECTED])
http://uppertank.net/ethanm/

-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to