Mercurial > p > roundup > code
view roundup/anypy/http_.py @ 5460:87f22a5d65ca
container modification while iterating over it
| author | Christof Meerwald <cmeerw@cmeerw.org> |
|---|---|
| date | Tue, 24 Jul 2018 21:25:38 +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
