Changes between Version 12 and Version 13 of XML-RPC


Ignore:
Timestamp:
Mar 27, 2007, 12:36:38 PM (17 years ago)
Author:
anonymous
Comment:

Corrected information for SimpleXMLRPCDispatcher

Legend:

Unmodified
Added
Removed
Modified
  • XML-RPC

    v12 v13  
    4343
    4444# Create a Dispatcher; this handles the calls and translates info to function maps
    45 dispatcher = SimpleXMLRPCDispatcher()
     45#dispatcher = SimpleXMLRPCDispatcher() # Python 2.4
     46dispatcher = SimpleXMLRPCDispatcher(allow_none=False, encoding=None) # Python 2.5
    4647
    4748
Back to Top