<div dir="ltr"><div dir="ltr">On Wed, Oct 16, 2019 at 3:53 PM Barry Jackson &lt;<a href="mailto:zen25000@zen.co.uk">zen25000@zen.co.uk</a>&gt; wrote:<br></div><div class="gmail_quote"><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">I have tried to build from py3 branch but hit lots of syntax errors, <br>
mainly except and print missing brackets. (output attached)<br></blockquote><div><br></div><div>The exception problem is quite easily fixed, see:</div><div><br></div><div><a href="https://docs.python.org/3.3/howto/pyporting.html">https://docs.python.org/3.3/howto/pyporting.html</a> </div><div><br></div><div>Basically they need to be changed from:</div><div><br></div><div>except Exception, e:<br></div><div><br></div><div>to</div><div><br></div><div>except Exception as e:<br></div><div><br></div><div>The 2to3 conversion program can do this automatically or you can try your and with sed :)</div><div><br></div><div>Thanks,</div><div>Richard</div><div>KF5OIM</div><div> <br></div></div></div>