James> Sets are available in python 2.3 as part of the sets module so it
    James> is possible.  However afaict the provided patch does not use the
    James> module and so will need to be adapted for use in 2.3.

I got so tired of the ugly test for the set builtin during our 2.3-to-2.4
transition that I finally just added

    if sys.hexversion < 0x2040000:
        from sets import Set as set
        import __builtin__
        __builtin__.set = set

to sitecustomize.py.  I'm not suggesting that scipy's installer should do
the same, but the change worked for us.

Skip


-------------------------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
_______________________________________________
Numpy-discussion mailing list
Numpy-discussion@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/numpy-discussion

Reply via email to