17 Oct
2019
17 Oct
'19
6:41 a.m.
On Wed, Oct 16, 2019 at 3:53 PM Barry Jackson zen25000@zen.co.uk wrote:
I have tried to build from py3 branch but hit lots of syntax errors, mainly except and print missing brackets. (output attached)
The exception problem is quite easily fixed, see:
https://docs.python.org/3.3/howto/pyporting.html
Basically they need to be changed from:
except Exception, e:
to
except Exception as e:
The 2to3 conversion program can do this automatically or you can try your and with sed :)
Thanks, Richard KF5OIM