diff options
author | Guido van Rossum <guido@python.org> | 2000-02-28 15:12:25 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2000-02-28 15:12:25 (GMT) |
commit | 98d9fd3e68075ce6fe7642ed8793c1abee69edf6 (patch) | |
tree | e7edc9f6bc97f7543df5b741520cf0f607176b15 /Lib/cgi.py | |
parent | ee28c3a5eae41a9b349ebbe7c4583d6a36a1984c (diff) | |
download | cpython-98d9fd3e68075ce6fe7642ed8793c1abee69edf6.zip cpython-98d9fd3e68075ce6fe7642ed8793c1abee69edf6.tar.gz cpython-98d9fd3e68075ce6fe7642ed8793c1abee69edf6.tar.bz2 |
Simple changes by Gerrit Holl - move author acknowledgements out of
docstrings into comments.
Diffstat (limited to 'Lib/cgi.py')
-rwxr-xr-x | Lib/cgi.py | 29 |
1 files changed, 14 insertions, 15 deletions
@@ -399,23 +399,22 @@ or written by every user on the system. - Don't try to give a CGI script a set-uid mode. This doesn't work on most systems, and is a security liability as well. - -History -------- - -Michael McLay started this module. Steve Majewski changed the -interface to SvFormContentDict and FormContentDict. The multipart -parsing was inspired by code submitted by Andreas Paepcke. Guido van -Rossum rewrote, reformatted and documented the module and is currently -responsible for its maintenance. - - -XXX The module is getting pretty heavy with all those docstrings. -Perhaps there should be a slimmed version that doesn't contain all those -backwards compatible and debugging classes and functions? - """ +# XXX The module is getting pretty heavy with all those docstrings. +# Perhaps there should be a slimmed version that doesn't contain all those +# backwards compatible and debugging classes and functions? + +# History +# ------- +# +# Michael McLay started this module. Steve Majewski changed the +# interface to SvFormContentDict and FormContentDict. The multipart +# parsing was inspired by code submitted by Andreas Paepcke. Guido van +# Rossum rewrote, reformatted and documented the module and is currently +# responsible for its maintenance. +# + __version__ = "2.2" |