Creating Python "executables" on Windows?

Peter Schneider-Kamp nowonder at nowonder.de
Fri Aug 18 03:56:22 EDT 2000


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
-- 
Peter Schneider-Kamp          ++47-7388-7331
Herman Krags veg 51-11        mailto:peter at schneider-kamp.de
N-7050 Trondheim              http://schneider-kamp.de




More information about the Python-list mailing list