-
- Notifications
You must be signed in to change notification settings - Fork 307
Closed
Description
Originally reported by: Claudiu Popa (BitBucket: PCManticore, GitHub: @PCManticore)
Reproducing with. Related to #198.
#!python class A(object): pass class SomeClass(object): route_class = A def __init__(self): self.route_class = type('B', (self.route_class, ), {}) self.route_class() #@