[web2py] Re: Do we have Plugin solid form upgraded code for python 3 ?

2022-03-24 Thread Rahul
anyone has any ideas ? On Wednesday, March 23, 2022 at 5:13:15 PM UTC+5:30 Rahul wrote: > Hi All, > I am migrating my python 2.7 project to py 3.7 - I am facing > issues with plugin solid form conversion to py3 code. My code uses this > plugin a lot. Rest all code works fine except th

Re: [web2py] Re: Do we have Plugin solid form upgraded code for python 3 ?

2022-03-24 Thread Massimiliano
This could be one problem: for i in range((max_row_lines - extra_colspan) / colspan): there are many of this. *range* take an integer, but a division in python3 return a float... Il giorno gio 24 mar 2022 alle ore 09:47 Rahul ha scritto: > anyone has any ideas ? > > On Wednesday, March 23,

Re: [web2py] Re: Do we have Plugin solid form upgraded code for python 3 ?

2022-03-24 Thread Dave S
On Thursday, March 24, 2022 at 3:21:01 AM UTC-7 Massimiliano wrote: > This could be one problem: > > for i in range((max_row_lines - extra_colspan) / colspan): > > there are many of this. > > *range* take an integer, but a division in python3 return a float... > > Interesting, but why doesn't t