Re: Looking for the mysterious zlib.py* files in Python 2.6.4 (32-bit) for Windows

2010-03-04 Thread python
> IIRC a pyd file is really a DLL, but for a built-in its included into in this > case python26.dll. Mystery solved! Thanks Mark! Regards, Malcolm -- http://mail.python.org/mailman/listinfo/python-list

Re: Looking for the mysterious zlib.py* files in Python 2.6.4 (32-bit) for Windows

2010-03-04 Thread Mark Lawrence
pyt...@bdurham.com wrote: In the process of building an EXE with py2exe, I noticed that there's no physical zlib files anywhere on my workstation. I can import zlib and use this module's features without problem. But when I query zlib.__file__, I get back an empty string. Where does the zlib co

Looking for the mysterious zlib.py* files in Python 2.6.4 (32-bit) for Windows

2010-03-04 Thread python
In the process of building an EXE with py2exe, I noticed that there's no physical zlib files anywhere on my workstation. I can import zlib and use this module's features without problem. But when I query zlib.__file__, I get back an empty string. Where does the zlib code live? Is zlib a in 2.6?