[web2py] Re: Print statement fails in command line script (v2.15.3)

2017-08-30 Thread Jim Karsten
I'm using python version 2.7.12 On Tuesday, August 29, 2017 at 7:12:53 PM UTC-4, Dave S wrote: > > > > On Tuesday, August 29, 2017 at 1:33:53 PM UTC-7, Jim Karsten wrote: >> >> I run many scripts from the command line. After upgrading to v2.15.3, I >> find print statements produce a SyntaxError.

[web2py] Re: Print statement fails in command line script (v2.15.3)

2017-08-30 Thread Jim Karsten
Done: https://github.com/web2py/web2py/issues/1750 Thanks. Jim On Tuesday, August 29, 2017 at 9:41:49 PM UTC-4, Anthony wrote: > > Looks like shell.py imports print_function from __future__, which requires > use of the print() function. I suppose this should be considered a breaking > of

[web2py] Re: Print statement fails in command line script (v2.15.3)

2017-08-29 Thread Anthony
Looks like shell.py imports print_function from __future__, which requires use of the print() function. I suppose this should be considered a breaking of backward compatibility, so feel free to report an issue on Github. Anthony On Tuesday, August 29, 2017 at 4:33:53 PM UTC-4, Jim Karsten

[web2py] Re: Print statement fails in command line script (v2.15.3)

2017-08-29 Thread Dave S
On Tuesday, August 29, 2017 at 1:33:53 PM UTC-7, Jim Karsten wrote: > > I run many scripts from the command line. After upgrading to v2.15.3, I > find print statements produce a SyntaxError. If I convert the statements to > a print function it works. This was not a problem in v2.14.6. > > What