Re: Make deconstructible classes forwards compatible

2014-11-22 Thread Markus Holtermann
Hey Carl, On Friday, November 21, 2014 7:57:47 PM UTC+1, Carl Meyer wrote: > > Hi Markus, > > On 11/21/2014 05:35 AM, Markus Holtermann wrote: > > As of now (Django 1.7.x and master) the migration writer serializes > > classes like the CreateModel operation with kwargs and not args. > > Which

Re: Make deconstructible classes forwards compatible

2014-11-21 Thread Carl Meyer
Hi Markus, On 11/21/2014 05:35 AM, Markus Holtermann wrote: > As of now (Django 1.7.x and master) the migration writer serializes > classes like the CreateModel operation with kwargs and not args. > Which is the right way to do. However, as soon as Django changes some > of these operations' constr

Make deconstructible classes forwards compatible

2014-11-21 Thread Markus Holtermann
Hi all, As of now (Django 1.7.x and master) the migration writer serializes classes like the CreateModel operation with kwargs and not args. Which is the right way to do. However, as soon as Django changes some of these operations' constructor signatures (as I plan to do in https://code.djangop