Wow! That must have been a pretty early beta.
> -Original Message-
> From: Nick [mailto:[EMAIL PROTECTED]
> Sent: 30 November 2006 17:16
> To: python-list@python.org
> Subject: Python Worship
>
> http://www.sciencedaily.com/releases/2006/11/061130081347.htm
>
> World's Oldest Ritual D
> Any recommendations on a windows packager/installer that's
> free? I need it to allow non-tech users to install some
> python scripts... you know, "Click Next"... "Click Next"...
> "Click Finish"... "You're Done!" and everything just
> magically works ;)
>
>
Last time I had to do this, I used
> -Original Message-
> From: Roy Smith [mailto:[EMAIL PROTECTED]
> Sent: 02 July 2005 21:22
> To: python-list@python.org
> Subject: Re: Determining actual elapsed (wall-clock) time
> If you get the UTC time, daylight savings time doesn't enter
> the equation.
> If the system clock is r
> -Original Message-
> From: Ognjen Bezanov [mailto:[EMAIL PROTECTED]
> Sent: 03 June 2005 09:30
> To: python-list@python.org
> Subject: Formatting Time
>
> I never thought id need help with such a thing as time
> formatting (admittadly i never did it before) but ok, i guess
> there is a f
It's not _exactly_ what you asked for but it may be enough...
Python 2.4 (#60, Nov 30 2004, 11:49:19) [MSC v.1310 32 bit (Intel)] on
win32
Type "help", "copyright", "credits" or "license" for more information.
>>> from sets import Set
>>> l = [0,0,1,1,1,2,2,3,3,3,2,2,2,4,4,4,5]
>>> s = Set(l)
>>>