| Commit message (Expand) | Author | Age | Files | Lines |
* | Added a comment explaining why this file must really have #! | Guido van Rossum | 2001-02-13 | 1 | -0/+9 |
|
|
* | String method conversion. | Eric S. Raymond | 2001-02-09 | 1 | -27/+26 |
|
|
* | added __all__ lists to a number of Python modules | Skip Montanaro | 2001-01-20 | 1 | -0/+2 |
|
|
* | Whitespace normalization. | Tim Peters | 2001-01-14 | 1 | -27/+27 |
|
|
* | Make Traceback header conform to new traceback ("innermost last" -> | Guido van Rossum | 2000-12-27 | 1 | -1/+1 |
|
|
* | This fixes several bug reports concering memory bloating during large | Barry Warsaw | 2000-11-06 | 1 | -5/+1 |
|
|
* | Undo Ping's change. | Guido van Rossum | 2000-10-03 | 1 | -1/+1 |
|
|
* | Change first line to #!/usr/bin/env python (really just to test check-in). | Ka-Ping Yee | 2000-10-03 | 1 | -1/+1 |
|
|
* | Patch #101121, by Ka-Ping Yee: cosmetic cleanup of cgi.py, using my | Guido van Rossum | 2000-09-19 | 1 | -37/+37 |
|
|
* | Improve the test output a bit. | Guido van Rossum | 2000-09-16 | 1 | -2/+4 |
|
|
* | fix bug #110661 (PR#356) -- accept either & or ; as separator for CGI | Jeremy Hylton | 2000-09-15 | 1 | -16/+15 |
|
|
* | Closing patch #101120 -- After everyone agreed. | Moshe Zadka | 2000-08-25 | 1 | -23/+23 |
|
|
* | Remove very long doc string (it's all in the docs) | Jeremy Hylton | 2000-08-03 | 1 | -399/+3 |
|
|
* | Spelling fixes supplied by Rob W. W. Hooft. All these are fixes in either | Thomas Wouters | 2000-07-16 | 1 | -6/+6 |
|
|
* | Simple changes by Gerrit Holl - move author acknowledgements out of | Guido van Rossum | 2000-02-28 | 1 | -15/+14 |
|
|
* | Fix a broken r.append(name, value) call, spotted by Tim. | Guido van Rossum | 2000-02-25 | 1 | -1/+1 |
|
|
* | After more discussion with Jim, change the behavior so that only a | Guido van Rossum | 1999-06-11 | 1 | -9/+1 |
|
|
* | Patch by Jim Fulton: new function parse_qsl(), which is like | Guido van Rossum | 1999-06-04 | 1 | -13/+44 |
|
|
* | At Jim Fulton's request (actually, as a compromise :-), default the | Guido van Rossum | 1999-06-02 | 1 | -2/+2 |
|
|
* | FieldStorage.__init__(): if there is no content-type header, use | Barry Warsaw | 1999-01-08 | 1 | -2/+24 |
|
|
* | In read_multi, allow a subclass to override the class we instantiate | Guido van Rossum | 1998-12-09 | 1 | -4/+7 |
|
|
* | Patch by Jim Fulton, who writes: | Guido van Rossum | 1998-10-20 | 1 | -4/+6 |
|
|
* | Treat "HEAD" same as "GET", so that CGI scripts won't fail. | Guido van Rossum | 1998-06-25 | 1 | -1/+1 |
|
|
* | Be more careful than the previous patch. The default content-type | Guido van Rossum | 1998-06-11 | 1 | -1/+4 |
|
|
* | Default content-type to application/x-www-form-urlencoded at the top | Guido van Rossum | 1998-06-09 | 1 | -1/+1 |
|
|
* | Make Tim O'Malley's requested change: in FieldStorage.__init__(), when | Guido van Rossum | 1998-05-08 | 1 | -1/+2 |
|
|
* | Mass check-in after untabifying all files that need it. | Guido van Rossum | 1998-03-26 | 1 | -534/+534 |
|
|
* | Use string.replace instead of regsub.[g]sub. | Guido van Rossum | 1997-12-24 | 1 | -7/+6 |
|
|
* | Use sys.exc_info() where needed. | Guido van Rossum | 1997-09-29 | 1 | -1/+2 |
|
|
* | Changes suggested by Jim fulton: | Guido van Rossum | 1997-08-12 | 1 | -13/+10 |
|
|
* | Add optional 'quote' flag argument to escape(); if true, translate '"' | Guido van Rossum | 1997-07-19 | 1 | -1/+3 |
|
|
* | Tweak default source of query a bit so it is possible to invoke | Guido van Rossum | 1997-05-28 | 1 | -3/+6 |
|
|
* | Reworded the doc string to remove the need for The Emacs font-lock kludge. | Guido van Rossum | 1997-05-28 | 1 | -15/+13 |
|
|
* | Untested changes by Skip Montanaro to have an optional limit on the | Guido van Rossum | 1997-05-13 | 1 | -0/+23 |
|
|
* | From: Clarence Gardner <clarence@king.silcom.com> | Guido van Rossum | 1997-04-11 | 1 | -2/+2 |
|
|
* | Put back #! /usr/local/bin/python. For cgi scripts, /usr/bin/env is | Guido van Rossum | 1997-02-18 | 1 | -1/+1 |
|
|
* | Add __len__ method | Guido van Rossum | 1997-01-11 | 1 | -0/+4 |
|
|
* | /usr/local/bin/python -> /usr/bin/env python | Guido van Rossum | 1996-11-27 | 1 | -2/+6 |
|
|
* | Added 'strict_parsing' option to all parsing functions. This causes a | Guido van Rossum | 1996-11-11 | 1 | -11/+27 |
|
|
* | Fix truncated paragraph in doc string. | Guido van Rossum | 1996-10-24 | 1 | -2/+3 |
|
|
* | Added logging support. | Guido van Rossum | 1996-09-05 | 1 | -0/+60 |
|
|
* | Fixed embarrassing logic bug in read_lines_to_outerboundary(). | Guido van Rossum | 1996-09-05 | 1 | -2/+3 |
|
|
* | Emacs font-lock de-bogo-kludgificocity | Guido van Rossum | 1996-08-26 | 1 | -0/+2 |
|
|
* | Added print_exception() convenience function. | Guido van Rossum | 1996-08-20 | 1 | -3/+21 |
|
|
* | For method=POST, append a query string from the environment or from | Guido van Rossum | 1996-08-08 | 1 | -1/+7 |
|
|
* | Remove all CRLF -> LF translation for file uploads, since we cannot | Guido van Rossum | 1996-07-23 | 1 | -9/+14 |
|
|
* | Changes by Jim Fulton: pass environ around as arg; | Guido van Rossum | 1996-07-23 | 1 | -19/+52 |
|
|
* | bump version (sorry) | Guido van Rossum | 1996-05-28 | 1 | -1/+1 |
|
|
* | capitalize H3 headers; add 'cgi.' prefix to example code | Guido van Rossum | 1996-05-28 | 1 | -4/+4 |
|
|
* | Added print_arguments() function. | Guido van Rossum | 1996-03-14 | 1 | -0/+8 |
|
|