view roundup/anypy/xmlrpc_.py @ 5970:11a9c5b2efd4

Additional headers for nosymessage Nice if a message needs to be marked as urgent or similar, e.g., Outlook uses an "Importance" header, when set to "high" it highlights the message.
author Ralf Schlatterbeck <rsc@runtux.com>
date Tue, 05 Nov 2019 13:22:20 +0100
parents db10c0a1f338
children 99d4fb22aa65
line wrap: on
line source

try:
    # Python 3+.
    from xmlrpc import client, server
    server.SimpleXMLRPCDispatcher
except (ImportError, AttributeError):
    # Python 2.
    import xmlrpclib as client
    import SimpleXMLRPCServer as server

Roundup Issue Tracker: http://roundup-tracker.org/