| 
  
   Size: 771 
  
  Comment:  
 | 
  
   Size: 850 
  
  Comment:  
 | 
| Deletions are marked like this. | Additions are marked like this. | 
| Line 1: | Line 1: | 
| = The Problem = | = Where to correct = | 
| Line 6: | Line 6: | 
| {{{ | |
| Line 21: | Line 21: | 
| }}} = what to do =  | 
|
| Line 24: | Line 26: | 
| zipfile = r"lib\shardlib" | {{{zipfile = r"lib\shardlib"}}} | 
| Line 28: | Line 30: | 
| zipfile = r"lib\shardlib.zip" | {{{zipfile = r"lib\shardlib.zip"}}} | 
| Line 30: | Line 32: | 
= additional information =  | 
|
| Line 33: | Line 37: | 
| 20040112 HAM | |
| Line 36: | Line 41: | 
Where to correct
Within site-packages/py2exe/samples/extending/setup.py
(line 54 ff..)
################################################################
# arguments for the setup() call
test_wx = dict(
    script = "test_wx.py",
    other_resources = [(RT_MANIFEST, 1, manifest_template % dict(prog="test_wx"))],
    dest_base = r"prog\test_wx")
zipfile = r"lib\shardlib"
options = {"py2exe": {"compressed": 1,
                      "optimize": 2}}
################################################################
what to do
The Error is within
zipfile = r"lib\shardlib"
it has to be
zipfile = r"lib\shardlib.zip"
additional information
I stumbled upon while trying to include win32com.client - that module was not able to find gen_py/init.py
20040112 HAM
