[issue1857] subprocess.Popen.poll/__del__ API breakage

2008-08-03 Thread Gregory P. Smith
Gregory P. Smith <[EMAIL PROTECTED]> added the comment: Fixed in trunk r65459. release25-maint r65460. -- resolution: -> accepted status: open -> closed ___ Python tracker <[EMAIL PROTECTED]> __

[issue1857] subprocess.Popen.poll/__del__ API breakage

2008-07-07 Thread Gregory P. Smith
Changes by Gregory P. Smith <[EMAIL PROTECTED]>: -- assignee: -> gregory.p.smith keywords: +patch nosy: +gregory.p.smith ___ Python tracker <[EMAIL PROTECTED]> ___ ___

[issue1857] subprocess.Popen.poll/__del__ API breakage

2008-01-18 Thread René Stadler
René Stadler added the comment: Yes, it works. __ Tracker <[EMAIL PROTECTED]> __ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.org/

[issue1857] subprocess.Popen.poll/__del__ API breakage

2008-01-17 Thread Amaury Forgeot d'Arc
Amaury Forgeot d'Arc added the comment: Does the attached patch correct your problem? -- nosy: +amaury.forgeotdarc Added file: http://bugs.python.org/file9197/subprocess_poll.patch __ Tracker <[EMAIL PROTECTED]>

[issue1857] subprocess.Popen.poll/__del__ API breakage

2008-01-17 Thread Christian Heimes
Changes by Christian Heimes: -- priority: -> normal type: -> resource usage __ Tracker <[EMAIL PROTECTED]> __ ___ Python-bugs-list mailing lis

[issue1857] subprocess.Popen.poll/__del__ API breakage

2008-01-17 Thread René Stadler
New submission from René Stadler: The commit to r45234 has added an internally used keyword attribute named _deadstate to subprocess.Popen.poll, which is called by the __del__ method of this class. If you derived your own class from subprocess.Popen that overrides .poll() without taking kwargs,