Mercurial > p > roundup > code
view roundup/anypy/http_.py @ 8511:b91d8a4e5850 permission-performance
close incorporated branch -- hg diff -r "ancestor(default,permission-performance)" -r permission-performance; returns nothing
| author | John Rouillard <rouilj@ieee.org> |
|---|---|
| date | Tue, 27 Jan 2026 21:22:47 -0500 |
| parents | ce04a489312e |
| children | 9d2ad7386627 |
line wrap: on
line source
try: # Python 3+ from http import client, server except (ImportError, AttributeError): # Python 2.5-2.7 import BaseHTTPServer as server # noqa: F401 import httplib as client # noqa: F401
