view roundup/anypy/http_.py @ 5932:df279b4e34a5

Run travis on 3.8 now that it's released.
author John Rouillard <rouilj@ieee.org>
date Sat, 19 Oct 2019 07:45:36 -0400
parents a75285092156
children 106f4384688b
line wrap: on
line source

try:
    # Python 3+
    from http import client, server
    server.DEFAULT_ERROR_MESSAGE
except:
    # Python 2.5-2.7
    import httplib as client
    import BaseHTTPServer as server


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