Issue1078

classification
Title: Popen3 objects don't have the pid attribute
Type: crash Severity: normal
Components: Core Versions: 2.5alpha1
process
Status: open Resolution:
Dependencies: Superseder:
Assigned To: Nosy List: cheeming
Priority: Keywords:

Created on 2008-07-17.12:35:26 by cheeming, last changed 2008-07-17.12:35:26 by cheeming.

Messages
msg3345 (view) Author: Chew Chee Ming (cheeming) Date: 2008-07-17.12:35:25
I have the following code:

    proc = popen2.Popen3(cmdline, capturestderr=True)
    pid = proc.pid

And I get the following error:
AttributeError: 'instance' object has no attribute 'pid'
History
Date User Action Args
2008-07-17 12:35:26cheemingcreate