Mercurial > p > roundup > code
view roundup/anypy/http_.py @ 5907:fe96015445e9
Reorder html entities generated by submit button
issue2551065: This allows styles to be applied. Thanks to Garth Jensen
for the patch against release 1.6
| author | Ralf Schlatterbeck <rsc@runtux.com> |
|---|---|
| date | Tue, 08 Oct 2019 14:37:29 +0200 |
| 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
