Mercurial > p > roundup > code
view roundup/anypy/http_.py @ 5795:10747e4e4ec4
replace assertNotEquals with assertNotEqual
| author | John Rouillard <rouilj@ieee.org> |
|---|---|
| date | Mon, 10 Jun 2019 21:28:51 -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
