[issue13339] Missing semicolon at Modules/posixsubprocess.c:4511

2012-05-15 Thread Roundup Robot
Roundup Robot devn...@psf.upfronthosting.co.za added the comment: New changeset 91ac9c36f09e by Éric Araujo in branch 'default': Harmonize error messages and add one missing test for #13339 http://hg.python.org/distutils2/rev/91ac9c36f09e -- ___

[issue13339] Missing semicolon at Modules/posixsubprocess.c:4511

2011-11-04 Thread Ross Lagerwall
Ross Lagerwall rosslagerw...@gmail.com added the comment: Thanks! -- assignee: - rosslagerwall nosy: +rosslagerwall resolution: - fixed stage: - committed/rejected status: open - closed ___ Python tracker rep...@bugs.python.org

[issue13339] Missing semicolon at Modules/posixsubprocess.c:4511

2011-11-03 Thread Robert Xiao
New submission from Robert Xiao nneon...@gmail.com: Line 4511 of Modules/posixsubprocess.c is missing a semicolon, so it would not compile successfully if the relevant build flags were enabled (PYOS_OS2). Trivial patch: @@ -4508,7 +4508,7 @@ static PyObject * posix_spawnvpe(PyObject *self,

[issue13339] Missing semicolon at Modules/posixsubprocess.c:4511

2011-11-03 Thread Roundup Robot
Roundup Robot devn...@psf.upfronthosting.co.za added the comment: New changeset fa9c69dcf31b by Ross Lagerwall in branch '3.2': Issue #13339: Fix compile error in posixmodule.c due to missing semicolon. http://hg.python.org/cpython/rev/fa9c69dcf31b New changeset 9e5d14aadca4 by Ross Lagerwall