I get these warning when doing remote call using the XML-RPC module.
Exemple session :
import xmlrpclib
s = xmlrpclib.ServerProxy?('http://vim-fr.org/lib/exe/xmlrpc.php')
s.dokuwiki.getVersion()
's' apparently modified, but can't copy it
's.dokuwiki' apparently modified, but can't copy it
'Release 2008-05-05'
I get also the following error in my terminal :
Traceback (most recent call last):
File "/usr/lib/python2.6/dist-packages/reinteract/shell_view.py", line 562, in do_motion_notify_event
obj, start_line, start_offset, _,_ = buf.worksheet.get_object_at_location(line, offset)
File "/usr/lib/python2.6/dist-packages/reinteract/worksheet.py", line 717, in get_object_at_location
result_scope, include_adjacent)
File "/usr/lib/python2.6/dist-packages/reinteract/tokenized_statement.py", line 595, in get_object_at_location
obj = self.resolve_names(names, scope)
File "/usr/lib/python2.6/dist-packages/reinteract/tokenized_statement.py", line 336, in resolve_names
if obj == None:
File "/usr/lib/python2.6/xmlrpclib.py", line 1199, in call
return self.send(self.name, args)
File "/usr/lib/python2.6/xmlrpclib.py", line 1483, in request
allow_none=self.allow_none)
File "/usr/lib/python2.6/xmlrpclib.py", line 1132, in dumps
data = m.dumps(params)
File "/usr/lib/python2.6/xmlrpclib.py", line 677, in dumps
dump(v, write)
File "/usr/lib/python2.6/xmlrpclib.py", line 699, in dump
f(self, value, write)
File "/usr/lib/python2.6/xmlrpclib.py", line 703, in dump_nil
raise TypeError?, "cannot marshal None unless allow_none is enabled"