On Jul 1, 12:42 am, Nobody wrote:
> On Wed, 30 Jun 2010 21:12:12 -0700, m wrote:
> > If I add the line:
> > for l in line: print ord(l),'\t',l
> > after the first readline, I get the following:
>
> > 27
> > 91 [
> > 48 0
> > 48 0
> > 109 m
> > 27
On Wed, 30 Jun 2010 21:12:12 -0700, m wrote:
> If I add the line:
> for l in line: print ord(l),'\t',l
> after the first readline, I get the following:
>
>
> 27
> 91[
> 480
> 480
> 109 m
> 27
> 91[
> 513
> 557
> 109 m
>
> before the codes begin for the
On Wed, Jun 30, 2010 at 9:12 PM, m wrote:
> I have this function:
>
>
> def GetMakeOutput(make, rules, out=None):
> p = subprocess.Popen('%s %s' % (make,rules),
> shell=True,
> bufsize=1024,
> stderr=subprocess.PIPE,
>
I have this function:
def GetMakeOutput(make, rules, out=None):
p = subprocess.Popen('%s %s' % (make,rules),
shell=True,
bufsize=1024,
stderr=subprocess.PIPE,
stdout=subprocess.PIPE,