Message173363
| 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* |
|