py2exe / Re: [Py2exe-users] crcmod submodule can't be ...
sourceforge.net › p › py2exeRemoved the clause, and imported crcmod in a console: >>> import crcmod Traceback (most recent call last): File "<stdin>", line 1, in <module> File "C:\Python26\lib\site-packages\crcmod\__init__.py", line 9, in <module> from crcmod.crcmod import * ImportError: No module named crcmod >>> It just struck me that there *won't* be "crcmod.crcmod" to ...
'Re: [Pythonmac-SIG] python 2.7 problem with crcmod ...
marc.infoAs > this is only a problem with python2.7 this may end up being a bug in > the stdlib though. > > As a workaround try adding includes for crcmod.predefined, or even the > entire crcmod package (setup (..., package= ['crcmod'], ...)) Yep. Forcing inclusion of the module in setup does resolve the issue. Here is the snippet of my setup file that ...