[Python-ideas] size of the installation of Python on mobile devices
M.-A. Lemburg
mal at egenix.com
Sat Jul 30 08:29:15 EDT 2016
On 30.07.2016 14:18, Xavier de Gaye wrote:
> On 07/30/2016 09:25 AM, Stephen J. Turnbull wrote:
>> For example, as Terry mentioned not all applications need the
>> unicodedata module, and it's *big*, but many applications I can
>> imagine doing myself (spam-checking and other validation of textual
>> data) would include it.
>
> How *big* exactly ?
> The size of the unicodedata shared library is 843K on archlinux when a
> sourceless distribution saves many tens of Mega bytes and a
> distribution without the test suite saves about 60M.
>
> IMHO only three options should be implemented, if the Python community
> really thinks seriously about porting Python to mobile devices:
> * --enable-sourceless-distribution
> * --disable-test-suite
> * --disable-distutils-builds
> The last option is to get rid of the config (LIBPL) directory that is
> used to build extension modules, as one cannot expect most mobile
> devices to have a proper build environment anyway.
>
> The result would be a distribution in the 10M order of magnitude, ten
> times smaller than the current size. Then we can look into
> compression, the impacts of compression on the size of the memory used
> by the python process and the impacts of compression on performance in
> mobile devices.
>
> The remaining savings (unicodedata, turtledemo, tkinter, unittest,
> ...) should be left to packagers.
IMO, this should all be left to packagers. They will have to
patch the code base anyway to get things working in such
an environment, so there isn't much point in adding some
bits to the configure script which everyone uses, while
leaving out other important parts. This doesn't simplify
the life of packagers much, but does add maintenance
overhead for the core developers (since these new options
would have to be tested as well before release).
BTW: By not having these options in configure, you also
gain a lot more freedom as packager, since you can have
the build behave you would like it to instead of going
through the whole change request discussion process that
updates/changes to these options would entail going
forward.
--
Marc-Andre Lemburg
eGenix.com
Professional Python Services directly from the Experts (#1, Jul 30 2016)
>>> Python Projects, Coaching and Consulting ... http://www.egenix.com/
>>> Python Database Interfaces ... http://products.egenix.com/
>>> Plone/Zope Database Interfaces ... http://zope.egenix.com/
________________________________________________________________________
::: We implement business ideas - efficiently in both time and costs :::
eGenix.com Software, Skills and Services GmbH Pastor-Loeh-Str.48
D-40764 Langenfeld, Germany. CEO Dipl.-Math. Marc-Andre Lemburg
Registered at Amtsgericht Duesseldorf: HRB 46611
http://www.egenix.com/company/contact/
http://www.malemburg.com/
More information about the Python-ideas
mailing list