Re: static compiled python modules

2005-01-10 Thread Thomas Linden
Nick Coghlan wrote: > http://www.python.org/dev/doc/devel/api/importing.html > Take a look at the last three entries about registering builtin modules. Thanks a lot, it works! regards, Tom -- http://mail.python.org/mailman/listinfo/python-list

Re: static compiled python modules

2005-01-10 Thread Nick Coghlan
Thomas Linden wrote: How can I tell python to use the compiled in modules and not try to load them from outside? http://www.python.org/dev/doc/devel/api/importing.html Take a look at the last three entries about registering builtin modules. Cheers, Nick. -- Nick Coghlan | [EMAIL PROTECTED] |

static compiled python modules

2005-01-09 Thread Thomas Linden
Hi, I made a static version of my python modules (2.4), all modules were build statically. The modules were linked into libpython2.4.a which has ~ 8 MB then. The build process then links the python binary against the libpython2.4.a, the resulting binary has ~ 5 MB afterwards (?). The problem is,