diff options
author | Jeremy Hylton <jeremy@alum.mit.edu> | 2000-09-15 20:06:57 (GMT) |
---|---|---|
committer | Jeremy Hylton <jeremy@alum.mit.edu> | 2000-09-15 20:06:57 (GMT) |
commit | afde7e24b6c7cd75e1797a02fa6c3674f6419531 (patch) | |
tree | 3b402da18d848f153ab6a21ef07f6ab2ece5c20b /Lib/test/output/test_cgi | |
parent | ce20967c2c4d1aa1333bcda5a3d8a86587af70b0 (diff) | |
download | cpython-afde7e24b6c7cd75e1797a02fa6c3674f6419531.zip cpython-afde7e24b6c7cd75e1797a02fa6c3674f6419531.tar.gz cpython-afde7e24b6c7cd75e1797a02fa6c3674f6419531.tar.bz2 |
fix bug #110661 (PR#356) -- accept either & or ; as separator for CGI
query string
also some doc string reformatting and use of string methods instead of
older string.splitfields
Diffstat (limited to 'Lib/test/output/test_cgi')
-rw-r--r-- | Lib/test/output/test_cgi | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Lib/test/output/test_cgi b/Lib/test/output/test_cgi index e9476d7..3741c22 100644 --- a/Lib/test/output/test_cgi +++ b/Lib/test/output/test_cgi @@ -2,8 +2,11 @@ test_cgi '' '&' '&&' +';' +';&;' '=' '=&=' +'=;=' '=a' '&=a' '=a&' @@ -17,6 +20,8 @@ test_cgi 'a=a+b&b=b+c' 'a=a+b&a=b+a' 'x=1&y=2.0&z=2-3.%2b0' +'x=1;y=2.0&z=2-3.%2b0' +'x=1;y=2.0;z=2-3.%2b0' 'Hbc5161168c542333633315dee1182227:key_store_seqid=400006&cuyer=r&view=bustomer&order_id=0bb2e248638833d48cb7fed300000f1b&expire=964546263&lobale=en-US&kid=130003.300038&ss=env' 'group_id=5470&set=custom&_assigned_to=31392&_status=1&_category=100&SUBMIT=Browse' Testing log |