view roundup/anypy/http_.py @ 5451:fe1bd8f12a9f

fixed encoding for long_description
author Christof Meerwald <cmeerw@cmeerw.org>
date Sat, 21 Jul 2018 19:39:03 +0100
parents 277e91bf7936
children a75285092156
line wrap: on
line source

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


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