[quills-dev] dirty BBB hack warning
Reinout van Rees reinout at vanrees.orgWed Oct 25 09:03:42 UTC 2006
- Previous message: [quills-dev] Re: Quills Multi-users settings explained where ?
- Next message: [quills-dev] [Collective-checkins] r32308 - Quills/trunk/browser
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
hi all, I added a try/except hack to provide quick backward compatibility for an incompatible method signature change that was recently introduced in fatsyndication: - entries.extend(fs.getFeedEntries(max_only)) + try: + entries.extend(fs.getFeedEntries(max_only)) + except TypeError: + # BBB + # Sudden change in method signature (extra 'max_only' + # parameter, which breaks Quills (and probably a few + # others). + entries.extend(fs.getFeedEntries()) It feels dirty, so I'm warning here. Reinout -- Reinout van Rees r.van.rees @ zestsoftware.nl http://vanrees.org/weblog/ http://zestsoftware.nl/ "Military engineers build missiles. Civil engineers build targets."
- Previous message: [quills-dev] Re: Quills Multi-users settings explained where ?
- Next message: [quills-dev] [Collective-checkins] r32308 - Quills/trunk/browser
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
More information about the quills-dev mailing list