Re: codecs - where are those on windows?

2006-11-04 Thread GHUM
Fredrik Lundh schrieb: > > If your installation directory is C:\Python25, then look in > > C:\Python25\lib\encodings > > that's only the glue code. the actual data sets are provided by a bunch > of built-in modules: > >>> import sys > >>> sys.builtin_module_names > ('__builtin__', '__main__',

Re: codecs - where are those on windows?

2006-10-30 Thread Fredrik Lundh
Paul Watson wrote: >> So, my question is: on Windows. where are those CJK codecs? Are they by >> any chance included in the 1.867.776 bytes of python24.dll ? > > If your installation directory is C:\Python25, then look in > > C:\Python25\lib\encodings that's only the glue code. the actual data

Re: codecs - where are those on windows?

2006-10-30 Thread Paul Watson
GHUM wrote: > I stumbled apon a paragraph in python-dev about "reducing the size of > Python" for an embedded device: > > """ > In my experience, the biggest gain can be obtained by dropping the > rarely-used > CJK codecs (for Asian languages). That should sum up to almost 800K > (uncompressed), I

codecs - where are those on windows?

2006-10-30 Thread GHUM
I stumbled apon a paragraph in python-dev about "reducing the size of Python" for an embedded device: """ In my experience, the biggest gain can be obtained by dropping the rarely-used CJK codecs (for Asian languages). That should sum up to almost 800K (uncompressed), IIRC. """ So, my question is