I remember some years ago I compiled Python 3.4 on Kobo, using an ARM virtual machine with qemu. Since the space on Kobo was little, I removed the standard library. But Python did not work. I had to include some stdlib modules too, like encodings/ascii.py, because I was not able to even print an "Hello world" to test it. It was not something very easy... I had to do some try-except :P https://www.mobileread.com/forums/showthread.php?t=243542
On Thu, 16 Jul 2020 at 21:19, David Mertz <[email protected]> wrote: > On Thu, Jul 16, 2020, 2:57 PM <[email protected]> wrote: > >> I know, I know that PyPy is fast as V8 but PyPy implement the whole >> library inside and it is not easy to embed it somewhere >> > > I have no idea what you mean by that. PyPy doesn't need its standard > library to run. Just like in CPython, those are just a bunch of external > files that you can import or not, as desired. > >> >> _______________________________________________ > Python-ideas mailing list -- [email protected] > To unsubscribe send an email to [email protected] > https://mail.python.org/mailman3/lists/python-ideas.python.org/ > Message archived at > https://mail.python.org/archives/list/[email protected]/message/BW55H6V4JE2A3XY5XRYJJNXKRIC52WEG/ > Code of Conduct: http://python.org/psf/codeofconduct/ >
_______________________________________________ Python-ideas mailing list -- [email protected] To unsubscribe send an email to [email protected] https://mail.python.org/mailman3/lists/python-ideas.python.org/ Message archived at https://mail.python.org/archives/list/[email protected]/message/LD3EMQDVIW7KYQGUKD3MTBQOCP7C7IYF/ Code of Conduct: http://python.org/psf/codeofconduct/
