Creating Python "executables" on Windows?

piet at cs.uu.nl piet at cs.uu.nl
Thu Aug 24 05:05:42 EDT 2000


>>>>> Peter Schneider-Kamp <nowonder at nowonder.de> (PS) writes:

PS> Azratax wrote:
>> 
>> rslt.append(k, v.__file__)
>> TypeError: append requires exactly 1 argument; 2 given

PS> replace by:
PS> rslt.extend((k, v.__file__))

PS> There will be at least one more show stopper of that
PS> kind. Modifiy in the same way.

I noticed that in the 3g version this line was replaced by 
rslt.append((k, v.__file__)) (append, not extend).
-- 
Piet van Oostrum <piet at cs.uu.nl>
URL: http://www.cs.uu.nl/~piet [PGP]
Private email: P.van.Oostrum at hccnet.nl



More information about the Python-list mailing list