Creating a _light_ python dll

Rainer Deyke root at rainerdeyke.com
Wed Jun 27 11:08:01 EDT 2001


"Emmanuel Astier" <emmanuel.astier at winwise.fr> wrote in message
news:3b39df15.103692562 at news.iway.fr...
> I would like to use Python as a script for internet games.
> The game will be avalaible by download only, so size really matters.
>
> What are the modules that I can remove from the standard python ?
> I thought of :
> complex,
> long object,

These two are part of the language itself on the syntax level, so removing
them might prove difficult.

> AudioOp,
> imageOp,
> md5,
> md5module,
> rgbimgmodule,
> rotormodule,
> shamodule,
> signalmodule,
> soundex,
> yuvconvert
>
> Are any of these necessary for python ?
> Are there any other module I could take back ?
> Is thread and threadmodule necessary, if I want to make a single
> thread application ?

If it's a module, it's probably safe to get rid of it (with some obvious
exceptions).  In general, if you can remove it, recompile, and still run
your game on it, then it was safe to remove.  Otherwise put it back in.


--
Rainer Deyke (root at rainerdeyke.com)
Shareware computer games           -           http://rainerdeyke.com
"In ihren Reihen zu stehen heisst unter Feinden zu kaempfen" - Abigor





More information about the Python-list mailing list