[issue13404] Add support for system.methodSignature() to XMLRPC Server

2013-09-23 Thread Vajrasky Kok
Vajrasky Kok added the comment: > How do you infer the data types for the parameters? I don't think we can, unless we force them to use function annotation. If they don't use that feature, then we say the signature is not supported. The problem is getting deeper if we are talking about return

[issue13404] Add support for system.methodSignature() to XMLRPC Server

2013-07-12 Thread Raymond Hettinger
Changes by Raymond Hettinger : -- versions: +Python 3.4 -Python 3.3 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscri

[issue13404] Add support for system.methodSignature() to XMLRPC Server

2011-11-18 Thread Éric Araujo
Changes by Éric Araujo : -- nosy: +eric.araujo ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pyth

[issue13404] Add support for system.methodSignature() to XMLRPC Server

2011-11-14 Thread Martin v . Löwis
Martin v. Löwis added the comment: How do you infer the data types for the parameters? -- ___ Python tracker ___ ___ Python-bugs-list

[issue13404] Add support for system.methodSignature() to XMLRPC Server

2011-11-14 Thread Antoine Pitrou
Changes by Antoine Pitrou : -- nosy: +flox, loewis ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.

[issue13404] Add support for system.methodSignature() to XMLRPC Server

2011-11-14 Thread Raymond Hettinger
New submission from Raymond Hettinger : Currently, the server has a stub method that returns: 'signatures not supported'. Using the inspect module, it shouldn't be difficult to provide function/method signatures for over-the-wire introspection. -- components: Library (Lib) messages: 1