Re: [web2py] Re: Python3 and gluon/xmlrpc.py

2018-08-14 Thread Johann Spies
Thanks Leonel. -- Because experiencing your loyal love is better than life itself, my lips will praise you. (Psalm 63:3) -- Resources: - http://web2py.com - http://web2py.com/book (Documentation) - http://github.com/web2py/web2py (Source code) - https://code.google.com/p/web2py/issues/list

[web2py] Re: Python3 and gluon/xmlrpc.py

2018-08-14 Thread Leonel Câmara
It's a bug. The fix could be something like: from gluon._compat import PY2 if PY2: from SimpleXMLRPCServer import SimpleXMLRPCDispatcher else: from xmlrpc.server import SimpleXMLRPCDispatcher -- Resources: - http://web2py.com - http://web2py.com/book (Documentation) -