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 brousch
Recipients asvetlov, brousch, chris.jerdonek, eric.araujo, gregory.p.smith, r.david.murray, rpetrov
Date 2012-10-19.23:29:36
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1350689376.81.0.23582976098.issue16255@psf.upfronthosting.co.za>
In-reply-to
Content
> Is there some document describing procedure for building/installing/running_tests at Android device?

I'm using the android-python27 project, but you can also reproduce it under SL4A:

Start SL4A
Menu -> View -> Interpreters
Python 2.6.2 or Python 3

>>> from subprocess import Popen
>>> p = Popen("ls", shell=True)
*Fails* OSError: [Error 2] No such file or directory
>>> p = Popen("ls" shell=True, executable="/system/bin/sh")
*Works*
History
Date User Action Args
2012-10-19 23:29:36brouschsetrecipients: + brousch, gregory.p.smith, eric.araujo, rpetrov, r.david.murray, asvetlov, chris.jerdonek
2012-10-19 23:29:36brouschsetmessageid: <1350689376.81.0.23582976098.issue16255@psf.upfronthosting.co.za>
2012-10-19 23:29:36brouschlinkissue16255 messages
2012-10-19 23:29:36brouschcreate