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:
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