118 Commits (547298c94cd491dbfaa7bc5f968c2bdcf91588cc)

Author SHA1 Message Date
Florent Xicluna 67317750af Issue #13248: turn 3.2's PendingDeprecationWarning into 3.3's DeprecationWarning (cgi, importlib, nntplib, smtpd). 14 years ago
Senthil Kumaran 1ef0c0349e 3.2 - Fix closes Issue12529 - cgi.parse_header failure on double quotes and 14 years ago
Victor Stinner d33344a030 Add cgi.closelog() function to close the log file 15 years ago
Victor Stinner f1c7ca93c1 cgi: use isinstance(x, list) instead of type(x) == type([]) 15 years ago
Victor Stinner 5c23b8e6ea Issue #4953: cgi.FieldStorage and cgi.parse() parse the request as bytes, not 15 years ago
Georg Brandl 1f7fffb308 #2830: add html.escape() helper and move cgi.escape() uses in the standard library to it. It defaults to quote=True and also escapes single quotes, which makes casual use safer. The cgi.escape() interface is not touched, but emits a (silent) PendingDeprecationWarning. 15 years ago
Senthil Kumaran 7a956cc74e Merged revisions 83901 via svnmerge from 16 years ago
Senthil Kumaran 30e86a4767 Fix Issue7007 - Use percent-encoded consistently instead of URL Encoded variations. Changes in Modules. 16 years ago
Benjamin Peterson 8c703a0ba6 Merged revisions 78844 via svnmerge from 16 years ago
Benjamin Peterson 894197d9f1 Merged revisions 78841-78842 via svnmerge from 16 years ago
Philip Jenvey a394f2dca3 #4351: more appropriate DeprecationWarning stacklevels 17 years ago
Fred Drake 9a0a65b524 Merged revisions 67528 via svnmerge from 17 years ago
Facundo Batista a27244bfa1 Added a warning filter to don't show the warning during 18 years ago
Facundo Batista c469d4c3aa Issue 600362: Relocated parse_qs() and parse_qsl(), from the cgi module 18 years ago
Benjamin Peterson dcf97b98ec Merged revisions 64434-64435,64440-64443,64445,64447-64448,64450,64452,64455,64461,64464,64466,64468 via svnmerge from 18 years ago
Jeremy Hylton 1afc169616 Make a new urllib package . 18 years ago
Benjamin Peterson ab82a97b73 remove a mimetools import 18 years ago
Barry Warsaw 820c120059 Patch for issue 2848, mostly by Humberto Diogenes, with a couple of 18 years ago
Barry Warsaw 596097e0bc Patch by Humberto Diogenes for issue 2849, removing rfc822 module from 18 years ago
Georg Brandl 49d1b4f919 Remove old backwards-compatibility classes from the cgi module. 18 years ago
Raymond Hettinger 2add352c43 Remove one use of UserDict.UserDict 18 years ago
Thomas Wouters 8ce81f767a Merged revisions 58211-58220 via svnmerge from 19 years ago
Collin Winter ce36ad8a46 Raise statement normalization in Lib/. 19 years ago
Guido van Rossum 92bab812f7 My wish for TempFile is fulfilled. 19 years ago
Guido van Rossum a1a68521db Make test_cgi pass. I changed the internal file created by make_file() 19 years ago
Guido van Rossum c1f779cb01 Merged revisions 56125-56153 via svnmerge from 19 years ago
Guido van Rossum 68937b4cbc Change some uses of cStringIO.StringIO to io.StringIO. 19 years ago
Guido van Rossum be19ed77dd Fix most trivially-findable print statements. 19 years ago
Guido van Rossum b940e113bf SF patch 1631942 by Collin Winter: 19 years ago
Thomas Wouters 89f507fe8c Four months of trunk changes (including a few releases...) 19 years ago
Georg Brandl 7cae87ca7b Patch #1550800: make exec a function. 20 years ago
Thomas Wouters 00ee7baf49 Merge current trunk into p3yk. This includes the PyNumber_Index API change, 20 years ago
Guido van Rossum e2b70bcf74 Get rid of dict.has_key(). Boy this has a lot of repercussions! 20 years ago
Armin Rigo 3a703b6059 Reverted revision 1.83, which introduced a bug and subtle incompatibility 21 years ago
Skip Montanaro 97b2fa229c Bring cgi.escape docstring slightly more in line with the library ref 21 years ago
Johannes Gijsbers c7fc10a418 Patch #1079734: remove dependencies on (deprecated) rfc822 and mimetools 21 years ago
Raymond Hettinger f871d833dd Remove some lambdas. 21 years ago
Raymond Hettinger a617271dbd Use cStringIO where available. 21 years ago
Johannes Gijsbers 9e15dd6861 Let cgi.parse_header() properly unquote headers (patch #1008597). 22 years ago
Neil Schemenauer 66edb6295f Don't return spurious empty fields if 'keep_empty_values' is True. 22 years ago
Brett Cannon 8d9b60f102 Change parse_qsl() to accept control-name's with no equal sign (e.g., "name") 22 years ago
Walter Dörwald 70a6b49821 Replace backticks with repr() or "%r" 22 years ago
Guido van Rossum 68468eba63 Get rid of many apply() calls. 23 years ago
Guido van Rossum 4061cbee9c Patch suggested by Hamish Lawson: add an __iter__() that returns 24 years ago
Raymond Hettinger 46ac8eb3c8 Code modernization. Replace v=s[i]; del s[i] with single lookup v=s.pop(i) 24 years ago
Raymond Hettinger 54f0222547 SF 563203. Replaced 'has_key()' with 'in'. 24 years ago
Raymond Hettinger a144900b86 Use is None rather than general boolean 24 years ago
Tim Peters bc0e910826 Convert a pile of obvious "yes/no" functions to return bool. 24 years ago
Skip Montanaro db5d1444a1 tighten up except - only ValueError can be raised in this situation 24 years ago
Neal Norwitz 7fd41ccdb1 SF #515006, remove unnecessary import 24 years ago