Re: [BangPypers] Adding mixing at run-time

2014-10-09 Thread venkatakrishnan g
I think this is a very nice approach. I disagree that that you could decorate a class as @Place.mixin by mistake, In fact i think the decorator actually makes it absolutely clear its purpose. However, the Place.mixin should return the mixin class. @classmethod def mixin(cls, mixin): "

Re: [BangPypers] Adding mixing at run-time

2014-10-09 Thread Deepu Thomas Philip
On Wed, Oct 8, 2014 at 4:19 PM, Anand Chitipothu wrote: > Hi, > > I'm working on a slightly large application and I'm trying to model it as a > some kind of plugin architecture so that it modular and I can enable or > take out features without lot of code changes. > > One of the issues I faced wa

Re: [BangPypers] Adding mixing at run-time

2014-10-09 Thread Anand Chitipothu
On Thu, Oct 9, 2014 at 11:30 AM, kracekumar ramaraju < kracethekingma...@gmail.com> wrote: > On Wed, Oct 8, 2014 at 4:19 PM, Anand Chitipothu > wrote: > > > Hi, > > > > I'm working on a slightly large application and I'm trying to model it > as a > > some kind of plugin architecture so that it mo