[Twisted-web] nevow/stackless bugs -- patch

Donovan Preston dp at ulaluma.com
Thu Sep 30 17:50:08 MDT 2004


On Sep 30, 2004, at 7:04 PM, James Y Knight wrote:

> On Sep 30, 2004, at 3:45 PM, Peter Hunt wrote:
>> I've been trying to run stan on stackless when I ran into a problem
>> with render methods. Stackless uses "stackless.instancemethod" instead
>> of "__builtin__.instancemethod", and "stackless.function" instead of
>> "__builtin__.function". Attached is a svn diff patch of the changes I
>> made to __init__.py in order for stan to support stackless properly.
>
> I think this is a serious problem with the lazy adapter registration. 
> Even for things that aren't __builtin__ brokenness. For example, if I 
> refactor and move some classes around, their module name will change. 
> To maintain backwards compatibility, I keep the binding in the old 
> module with a deprecation warning, which keeps everything happy, 
> EXCEPT for the lazy adapter registration. Since it keys on the full 
> object name, it breaks.
>
> But, as for this patch, committed.

It's also a problem when you have an adapter registration and then you 
delete the adapter. You have garbage in your registrations that you 
don't know about until later.

To help prevent this situation from occurring, I wrote some tests which 
assert that all the registered adapters actually exist, so while you 
might not see it in production, you'll see it if you run the tests.

I think writing a test that verifies your adapters are registered 
properly is the best solution.

dp




More information about the Twisted-web mailing list