Patrick K. O'Brien wrote:
> 
> Robert Wittams wrote:
> 
>>>http://louie.berlios.de/
>>
>>Argh, this is getting ridiculous.
> 
> 
> Oh?  Sorry, didn't mean to make things difficult for you...

I meant me replying three times to the same message ;-)

>>I noticed louie requires python 2.4. Django is currently supporting 2.3
>>upwards. How hard would it be to support 2.3?
> 
> 
> That shouldn't be too hard.  We switched to 2.4 in order to use sets,
> but we should be able to toggle that for 2.3 support.

Yes, I had the same issue. I used :

# For Python 2.3
if not hasattr(__builtins__, 'set'):
    from sets import Set as set

All the stuff I'm using it for works fine like that.

> --
> Patrick K. O'Brien
> Orbtech       http://www.orbtech.com
> Schevo        http://www.schevo.org
> Louie         http://louie.berlios.de

Reply via email to