Not being judgmental or anything. I just want to know why web.py uses old style objects. For instance:
class SQLParam: instead of: class SQLParam(object): Multiple inheritance is broken in old style objects (for multiple resolution order), and they are incompatible with new style objects. My new style objects can't inherit the old ones in web.py. I also don't have access to the __new__ property and I can't create descriptors. Was it a decision based on legacy needs or is there some benefit to the old way of doing this? Thanks. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "web.py" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/webpy?hl=en -~----------~----~----~----~------~----~------~--~---
