This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author gregory.p.smith
Recipients Alex.Willmer, gregory.p.smith, paulpaulson
Date 2017-09-07.18:05:18
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1504807519.03.0.932103750313.issue31383@psf.upfronthosting.co.za>
In-reply-to
Content
The standard library in Python 2.7 does not have an associated extension module.  _posixsubprocess comes from subprocess32.

There isn't much point in using subprocess32 on POSIX systems without the _posixsubprocess extension module.

If that import is failing, something in your build for whatever your embedded system is, is not doing the right thing.

as this is subprocess32 only related and not python stdlib subprocess related in Python 3 I suggest using the https://github.com/google/python-subprocess32/issues tracker.  But I don't have enough information to offer much help.

"ImportError: dynamic module does not define init function (init_posixsubprocess)" is very suspicious given that it does: https://github.com/google/python-subprocess32/blob/master/_posixsubprocess.c#L879
History
Date User Action Args
2017-09-07 18:05:19gregory.p.smithsetrecipients: + gregory.p.smith, Alex.Willmer, paulpaulson
2017-09-07 18:05:19gregory.p.smithsetmessageid: <1504807519.03.0.932103750313.issue31383@psf.upfronthosting.co.za>
2017-09-07 18:05:19gregory.p.smithlinkissue31383 messages
2017-09-07 18:05:18gregory.p.smithcreate