Message191592
> I'm attracted to the idea of making a loader lazy by simply doing
> something
> like ``class LazySourceFileLoader(LazyMixin, SourceFileLoader):
> ...``.
But then you have to make a specific Lazy subclass for each delegated
loader implementation. With a proxy class you would simply proxy each
loader instance:
existing_loader = SourceFileLoader(...)
lazy_loader = LazyLoader(existing_loader)
... |
|
| Date |
User |
Action |
Args |
| 2013-06-21 15:11:22 | pitrou | set | recipients:
+ pitrou, brett.cannon, benjamin.peterson |
| 2013-06-21 15:11:22 | pitrou | link | issue18275 messages |
| 2013-06-21 15:11:22 | pitrou | create | |
|