Mercurial > p > roundup > code
view roundup/anypy/http_.py @ 5915:8814d1d5cb4e
issue2551025- mysql failure with 1.3.14 mysqlclient. fix mixed tab/space
| author | John Rouillard <rouilj@ieee.org> |
|---|---|
| date | Sat, 12 Oct 2019 21:17:38 -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
