Creating Python "executables" on Windows?

Azratax azratax at yahoo.com
Fri Aug 18 17:39:37 EDT 2000


In article <399CEC26.59C0DC79 at nowonder.de>, Peter Schneider-Kamp <nowonder at nowonder.de> wrote:
>Azratax wrote:
>> 
>>     rslt.append(k, v.__file__)
>> TypeError: append requires exactly 1 argument; 2 given
>
>replace by:
>rslt.extend((k, v.__file__))
>
>There will be at least one more show stopper of that
>kind. Modifiy in the same way.
>
>Peter

Thanks.  that worked. there were 3 more problems of the same type. 
Unfortunately, asfter fixing them all, it came to  a point where it printed 
out:

  File "C:\Python16\tools\install\Builder.py", line 151, in gather
    self.toc.merge([resource.makeresource('python15.dll')])
  File "C:\Python16\tools\install\MEInc\Dist\resource.py", line 19, in 
makeresou
rce
    typ, nm, fullname = finder.identify(name, xtrapath)
  File "C:\Python16\tools\install\MEInc\Dist\finder.py", line 121, in identify
    raise ValueError, "%s not found" % name
ValueError: python15.dll not found

I worry about changing it to look for python16.dll (or whatever the new one 
is)... what would your advice on this be?
      -Az



More information about the Python-list mailing list