1. 1813c17 #2211: properly document the Morsel behavior changes. by R David Murray · 10 years ago
  2. 6c32585 Restored backward compatibility of pickling http.cookies.Morsel. It was by Serhiy Storchaka · 10 years ago
  3. 9c1a9b2 Issue #2211: Updated the implementation of the http.cookies.Morsel class. by Serhiy Storchaka · 10 years ago
  4. 5b88329 merge 3.4 (#22986) by Benjamin Peterson · 10 years ago
  5. bd34162 capitialize "HttpOnly" and "Secure" as they appear in the standard and other impls (closes #23250) by Benjamin Peterson · 10 years ago
  6. b1e3607 Issue #22796: HTTP cookie parsing is now stricter, in order to protect against potential injection attacks. by Antoine Pitrou · 10 years ago
  7. 8cf7c1c Issue #22775: Fixed unpickling of http.cookies.SimpleCookie with protocol 2 by Serhiy Storchaka · 10 years ago
  8. 7d0b8f9 Lax cookie parsing in http.cookies could be a security issue when combined by Antoine Pitrou · 10 years ago
  9. b992a0e Issue #19936: Added executable bits or shebang lines to Python scripts which by Serhiy Storchaka · 11 years ago
  10. cd0f74b #16611: BaseCookie now parses 'secure' and 'httponly' flags. by R David Murray · 11 years ago
  11. 185f401 merge - Fix for issue14426 - buildbots here I come by Senthil Kumaran · 12 years ago
  12. aeeba26 Fix for issue14426 - buildbots here I come by Senthil Kumaran · 12 years ago
  13. 0b943a1 Issue #14426: Correct the Date format in Expires attribute of Set-Cookie. Patch by Federico Reghenzani and Müte Invert by Senthil Kumaran · 12 years ago
  14. 00c2ec2 Issue #14426: Correct the Date format in Expires attribute of Set-Cookie. Patch by Federico Reghenzani and Müte Invert by Senthil Kumaran · 12 years ago
  15. 3a441c1 Fix Issue2193 - Allow ":" character in Cookie NAME values by Senthil Kumaran · 13 years ago
  16. e05ca2a #9824: encode , and ; in cookie values so that browsers don't split on them by R. David Murray · 14 years ago
  17. cbd2ab1 #1513299: cleanup some map() uses where a comprehension works better. by Georg Brandl · 14 years ago
  18. b16e38b #8826: the "expires" attribute value is a date string with spaces, but apparently not all user-agents put it in quotes. Handle that as a special case. by Georg Brandl · 14 years ago
  19. 76e155a #3788: more tests for http.cookies, now at 95% coverage. Also bring coding style in the module up to PEP 8, where it does not break backwards compatibility. by Georg Brandl · 14 years ago
  20. 90f5ba5 convert shebang lines: python -> python3 by Benjamin Peterson · 15 years ago
  21. 8719ad5 Merged revisions 74277,74321,74323,74326,74355,74465,74467,74488,74492,74513,74531,74549,74553,74625,74632,74643-74644,74647,74652,74666,74671,74727,74739 via svnmerge from by Benjamin Peterson · 15 years ago
  22. 9cf32a1 Turn some comments into docstrings. by Georg Brandl · 15 years ago
  23. 4eff9f7 Remove pseudo-end markers from http.cookies. by Georg Brandl · 15 years ago
  24. 3e2ea79 Fixing the issue4860. Escaping the embedded '"' in the js_output method of Morsel class. by Senthil Kumaran · 16 years ago
  25. 35e661c Merged revisions 66262 via svnmerge from by Benjamin Peterson · 16 years ago
  26. fd03645 #2834: Change re module semantics, so that str and bytes mixing is forbidden, by Antoine Pitrou · 16 years ago
  27. 6101395 Remove deprecated SmartCookie and SerialCookie classes. by Georg Brandl · 16 years ago
  28. 2442015 Create http package. #2883. by Georg Brandl · 16 years ago[Renamed (96%) from Lib/Cookie.py]
  29. f66263c Fix test_cookie.py. by Guido van Rossum · 17 years ago
  30. 99603b0 Getting rid of cPickle. Mmm, feels good! by Guido van Rossum · 17 years ago
  31. 0c41e88 Fix test_cookie after filter() behavior change. by Guido van Rossum · 17 years ago
  32. 3f1e65c Fix Cookie.py: Fix example in the docstring (encoded SerialCookies contain by Walter Dörwald · 17 years ago
  33. 805365e Merged revisions 55007-55179 via svnmerge from by Guido van Rossum · 17 years ago
  34. 9d72bb4 Remove functions in string module that are also string methods. Also remove: by Neal Norwitz · 18 years ago
  35. cc2b016 - PEP 3106: dict.iterkeys(), .iteritems(), .itervalues() are now gone; by Guido van Rossum · 18 years ago
  36. fff80df Revert doubly-converted doctests. by Guido van Rossum · 18 years ago
  37. 7131f84 Fix a bunch of doctests with the -d option of refactor.py. by Guido van Rossum · 18 years ago
  38. be19ed7 Fix most trivially-findable print statements. by Guido van Rossum · 18 years ago
  39. 00ee7ba Merge current trunk into p3yk. This includes the PyNumber_Index API change, by Thomas Wouters · 18 years ago
  40. bf12cdb Quite a few fixes to make the library and test suite more robust when by Guido van Rossum · 18 years ago
  41. 8246c43 Correct test suite for #848017. by Georg Brandl · 19 years ago
  42. 532efab patch #848017: make Cookie more RFC-compliant. by Georg Brandl · 19 years ago
  43. 03a33ea bug [ 1108948 ] Cookie.py produces invalid code by Georg Brandl · 19 years ago
  44. f0dfc7a Fix a bunch of typos in documentation, docstrings and comments. by Walter Dörwald · 21 years ago
  45. 7877a76 Patch #655760: add warnings when the unsafe *Cookie classes are instantiated by Andrew M. Kuchling · 22 years ago
  46. 6cd7712 No point in warning about needing re module; remove helpful message by Andrew M. Kuchling · 22 years ago
  47. 3c76ad0 Fix comment typo by Andrew M. Kuchling · 22 years ago
  48. 0a2963c Apply SF 562987 modernizing Cookie to subclass from dict instead of UserDict by Raymond Hettinger · 22 years ago
  49. d451ec1 Clean up uses of some deprecated features. by Fred Drake · 23 years ago
  50. 02d893c Patch #444359: Remove unused imports. by Martin v. Löwis · 23 years ago
  51. 79e75e1 Use string.ascii_letters instead of string.letters (SF bug #226706). by Fred Drake · 23 years ago
  52. 2f228e7 Get rid of the superstitious "~" in dict hashing's "i = (~hash) & mask". by Tim Peters · 23 years ago
  53. 58b6f5b Since this module already uses doctest-style examples, I figured I'd by Guido van Rossum · 24 years ago
  54. c05abb3 Patch #103473 from dougfort: Some sites (amazon.com for one) drop by Andrew M. Kuchling · 24 years ago
  55. e99d5ea added __all__ lists to a number of Python modules by Skip Montanaro · 24 years ago
  56. 88869f9 Whitespace normalization. by Tim Peters · 24 years ago
  57. 8152d32 Update the code to better reflect recommended style: by Fred Drake · 24 years ago
  58. ff5364a Whitespace cleanup; now passes the regression test (the last checkin made by Fred Drake · 24 years ago
  59. 0b29b11 Updated version of Cookie.py (rev. 2.29) from timo by Andrew M. Kuchling · 24 years ago
  60. 52ea872 Added Tim O'Malley's Cookie.py module (master version at by Andrew M. Kuchling · 24 years ago