Nat Goodspeed wrote:
Mark Chandler wrote:

Is there a small subset of the default python library that i can use for our embedded instance. Since this is part of a larger app that doesnt expect to have python installed thus we are including it with the program data. How ever there is alot of stuff in there that we are not going to use (all the server stuff) and dont want clients using as well.

Have you looked at the distutils tools? I know there's functionality to start from a "root set" of referenced Python library modules and produce an exhaustive list of recursively-referenced modules.

You can also try running python with the -v flag, it will give you a list of everything it imports. You probably can get your minimum distribution from this info...

-t
_______________________________________________
Cplusplus-sig mailing list
Cplusplus-sig@python.org
http://mail.python.org/mailman/listinfo/cplusplus-sig

Reply via email to