Re: install py2exe in vista

2008-07-04 Thread maphew
SOLVED: right-click on the install program and "Run as administrator" solution courtesy of http://support.esri.com/index.cfm?fa=knowledgebase.techarticles.articleShow&d=34538 On Jun 22, 11:34 am, jim-on-linux <[EMAIL PROTECTED]> wrote: > On Saturday 21 June 2008 13:28, Herman wrote: > > >  I wan

Re: removing duplicates, or, converting Set() to string

2006-07-27 Thread maphew
thank you everybody for your help! That worked perfectly. :) I really appreciate the time you spent answering what is probably a pretty basic question for you. It's nice not to be ignored. be well, -matt -- http://mail.python.org/mailman/listinfo/python-list

removing duplicates, or, converting Set() to string

2006-07-26 Thread maphew
Hello, I have some lists for which I need to remove duplicates. I found the sets.Sets() module which does exactly this, but how do I get the set back out again? # existing input: A,B,B,C,D # desired result: A,B,C,D import sets dupes = ['A','B','B','C','D'] clean = sets.Set(dupes) out = open('cl