Re: [web2py] No Column error

2019-11-29 Thread Lovedie JC
I think my error was due to a reserved name. I had a field called timestamp that was leading to the error. Now works well. On Wed, Nov 27, 2019, 19:01 Maurice Waka wrote: > I got this error after installing psycopg2 > > > > Traceback (most recent call last): > File "/home/mauricewaka/web2py/gl

[web2py] Re: Redis session error - latest web2py master

2019-11-29 Thread Jose C
On Thursday, 28 November 2019 23:21:39 UTC, Massimo Di Pierro wrote: > > py4web does sessions in redis by default (if you have redis). Just saying. > Yep and it looks promising but I don't have the guts to migrate a mature site with tens of thousands of users on to it yet - a bit too bleeding edg

[web2py] Re: Web2py with python 3.8.0

2019-11-29 Thread Woody
What is causing the problem with Python 3.8? Is it causing problems with other applications? Is it an undocumented bug in Python? Is it likely that Python will be changed to fix the problem or will web2py have to conform to the Python changes? -- Resources: - http://web2py.com - http://web2py.

Re: [web2py] Re: Web2py with python 3.8.0

2019-11-29 Thread Kevin Keller
Some deprecated functions have been removed in 3.8 finally. Hence py4web and web2py have to adapt to the new situation. Django went through the same process already. On Fri, 29 Nov 2019, 14:11 Woody, wrote: > What is causing the problem with Python 3.8? Is it causing problems with > other a

Re: [web2py] Re: Web2py with python 3.8.0

2019-11-29 Thread Woody
Shouldn't that be done before the release rather than afterward? -- Resources: - http://web2py.com - http://web2py.com/book (Documentation) - http://github.com/web2py/web2py (Source code) - https://code.google.com/p/web2py/issues/list (Report Issues) --- You received this message because you are

Re: [web2py] Re: Web2py with python 3.8.0

2019-11-29 Thread Kevin Keller
Maybe, it wasn't on the radar of the django developers either and had to be fixed in the framework after python3 was released. Happens sometimes I suppose, hard to keep up with depreciation of functions and the impact on a framework. Anyways, I suppose we juar have to file the bug reports and fix

Re: [web2py] No Column error

2019-11-29 Thread Dave S
On Friday, November 29, 2019 at 1:06:01 AM UTC-8, Lovedie JC wrote: > > I think my error was due to a reserved name. I had a field called > timestamp that was leading to the error. > Now works well. > Ah! Did you use r_name to fix things, or a more thorough change? /dps > > On Wed, Nov 27,