Pearu Peterson wrote: > Hi, > > I noticed that numpy revision 3794 introduces `set` > but that is available starting from Python 2.4.
Note that the code David added is compatible with Python 2.3. 22 try: 23 set 24 except NameError: 25 from sets import Set as set -- Robert Kern "I have come to believe that the whole world is an enigma, a harmless enigma that is made terrible by our own mad attempt to interpret it as though it had an underlying truth." -- Umberto Eco _______________________________________________ Numpy-discussion mailing list [email protected] http://projects.scipy.org/mailman/listinfo/numpy-discussion
