]> granicus.if.org Git - python/commit
Patch by Jeff Rush:
authorGuido van Rossum <guido@python.org>
Mon, 7 Dec 1998 04:08:03 +0000 (04:08 +0000)
committerGuido van Rossum <guido@python.org>
Mon, 7 Dec 1998 04:08:03 +0000 (04:08 +0000)
commit9228cbd0844f9f0a641832b214a47006c77333bb
tree097c9997759dd75c6c60fec375f1e54267c33457
parent391c8b4ea2fb688f2c0184ee219723d837732937
Patch by Jeff Rush:

In CGIHTTPServer.py, the list of acceptable formats is -split-
on spaces but -joined- on commas, resulting in double commas
in the joined text.  It appears harmless to my browser but
ought to be fixed anyway.

    'A, B, C' -> 'A,', 'B,', 'C,' -> 'A,,B,,C'
Lib/CGIHTTPServer.py