Re: [web2py] Re: Werid syntax Error. web2py 1.81.4

2010-08-01 Thread Phyo Arkar
casesdb.define_table('case_ data',*casedata_halfschema,migrate=True) #works python 2.6 but not in 2.5 it worked after you corrected me to, casesdb.define_table('case_ data',migrate=True,*casedata_halfschema) #works both But i didn't see it was mention that , it is changed in python 2.6 at pytho

[web2py] Re: Werid syntax Error. web2py 1.81.4

2010-08-01 Thread mdipierro
> Did python community mentioned Syntax change for *args in 2.6 ? tell us more

Re: [web2py] Re: Werid syntax Error. web2py 1.81.4

2010-08-01 Thread Phyo Arkar
Yeah Thats it!! Thanks a lot Prof Massimo! Did python community mentioned Syntax change for *args in 2.6 ? On Sun, Aug 1, 2010 at 8:08 PM, mdipierro wrote: > should be > > casesdb.define_table('case_data',migrate=True,*casedata_halfschema) > > > On Aug 1, 7:32 am, Phyo Arkar wrote: > > Hello

[web2py] Re: Werid syntax Error. web2py 1.81.4

2010-08-01 Thread mdipierro
should be casesdb.define_table('case_data',migrate=True,*casedata_halfschema) On Aug 1, 7:32 am, Phyo Arkar wrote: > Hello all, > > I am getting very weird syntax error : > > Below is the controller code : > > global RESPONSE , REQUEST, SESSION , db > > REQUEST = Request() > REQUEST = request >