Croydon / flask-xml-rpc-reloaded

This is a library that lets your Flask apps provide XML-RPC APIs. OPEN FOR PULL REQUESTS.
https://pypi.org/project/Flask-XML-RPC-Re/
MIT License
8 stars 4 forks source link

dump_method_call signature is not python2 compatible anymore #11

Open fbouliane opened 5 years ago

fbouliane commented 5 years ago

In python2, using a default args after the *params method is not allowed, therefore the 0.13 is the only compatible version with python2.

from flask_xmlrpcre.xmlrpcre import XMLRPCTester File "/.tox/py27/lib/python2.7/site-packages/flask_xmlrpcre/xmlrpcre.py", line 239 def dump_method_call(method, *params, allow_none=False): ^ SyntaxError: invalid syntax

If you dropped the support for python2, please close this issue.