1. e5a853c use PyMem_NEW to detect overflow (closes #23362) by Benjamin Peterson · 9 years ago
  2. b779bfb fix possible overflow bugs in unicodedata (closes #23367) by Benjamin Peterson · 9 years ago
  3. 03f8612 merge 3.2 by Benjamin Peterson · 9 years ago
  4. 893cce9 remove RPM, since it's unused and unmaintained by Benjamin Peterson · 9 years ago
  5. 8ce6806 add overflow checking (closes #23361) by Benjamin Peterson · 9 years ago
  6. dee948b Issues #23363, #23364, #23365, #23366: Fixed itertools overflow tests. by Serhiy Storchaka · 10 years ago
  7. 1572944 reduce memory usage of test (closes #23369) by Benjamin Peterson · 10 years ago
  8. 0eaabf1 check for overflows in permutations() and product() (closes #23363, closes #23364) by Benjamin Peterson · 10 years ago
  9. 6f08229 check for overflow in combinations_with_replacement (closes #23365) by Benjamin Peterson · 10 years ago
  10. 4b40eeb detect overflow in combinations (closes #23366) by Benjamin Peterson · 10 years ago
  11. 68389ea remove extra ws by Benjamin Peterson · 10 years ago
  12. e3bfe19 fix possible overflow in encode_basestring_ascii (closes #23369) by Benjamin Peterson · 10 years ago
  13. aed1984 Issue #23055: Fixed read-past-the-end error in PyUnicode_FromFormatV. by Serhiy Storchaka · 10 years ago
  14. 4dbc305 Issue #23055: Fixed a buffer overflow in PyUnicode_FromFormatV. Analysis by Serhiy Storchaka · 10 years ago
  15. 3f95292 Issue #23055: Fixed a buffer overflow in PyUnicode_FromFormatV. Analysis by Serhiy Storchaka · 10 years ago
  16. 119479f Issue20467: clarify __init__'s role by Ethan Furman · 10 years ago
  17. 72c2a0f merge 3.2 (closes #23165) by Benjamin Peterson · 10 years ago
  18. f18bf6f add some overflow checks before multiplying (closes #23165) by Benjamin Peterson · 10 years ago
  19. 7919acb merge 3.2 by Benjamin Peterson · 10 years ago
  20. 47e782a update for copyright for 2015 by Benjamin Peterson · 10 years ago
  21. 9582b33 merge 3.2 (#23130) by Benjamin Peterson · 10 years ago
  22. 44e4b98 delete old ftpmirror script, which now has security bugs (closes #23130) by Benjamin Peterson · 10 years ago
  23. 81b7374 merge 3.2 (#16043) by Benjamin Peterson · 10 years ago
  24. 4e9cefa add a default limit for the amount of data xmlrpclib.gzip_decode will return (closes #16043) by Benjamin Peterson · 10 years ago
  25. e71abcc merge 3.2 by Benjamin Peterson · 10 years ago
  26. 258f3f0 use pythontest.net for url fragment test by Benjamin Peterson · 10 years ago
  27. 97751fa merge 3.2 by Benjamin Peterson · 10 years ago
  28. 863c962 move idna test domain to pythontest.net by Benjamin Peterson · 10 years ago
  29. 9fc59c9 make plural s lowercase by Benjamin Peterson · 10 years ago
  30. b6dc9b7 Fixed signed/unsigned comparison warning by Antoine Pitrou · 10 years ago
  31. 4d85689 test is cpython only by Benjamin Peterson · 10 years ago
  32. 1e211ff it suffices to check for PY_SSIZE_T_MAX overflow (#22643) by Benjamin Peterson · 10 years ago
  33. c0e64f5 make sure length is unsigned by Benjamin Peterson · 10 years ago
  34. e1bd38c fix integer overflow in unicode case operations (closes #22643) by Benjamin Peterson · 10 years ago
  35. 77a75b3 note xmlrpclib doesn't verify certs (yet) by Benjamin Peterson · 10 years ago
  36. 5e7b542 Merge 3.2 into 3.3. by Georg Brandl · 10 years ago
  37. 3f5ee28 Added tag v3.3.6 for changeset 971fec30da1f by Georg Brandl · 10 years ago
  38. 18e8972 Bump to 3.3.6 by Georg Brandl · 10 years ago
  39. 6f1abda Added tag v3.2.6 for changeset 0bd5f4f14de9 by Georg Brandl · 10 years ago
  40. 439d885 Bump to 3.2.6 by Georg Brandl · 10 years ago
  41. b3ac843 #16040: fix unlimited read from connection in nntplib. by Georg Brandl · 10 years ago
  42. 4cae8ff Added tag v3.3.6rc1 for changeset 51317c9786f5 by Georg Brandl · 10 years ago
  43. f84422d Added tag v3.2.6rc1 for changeset 51382a5598ec by Georg Brandl · 10 years ago
  44. edc3cba Copyright year update, add version to licenses. by Georg Brandl · 10 years ago
  45. e800a0e Bump to 3.2.6rc1 by Georg Brandl · 10 years ago
  46. 4b16818 Issue #22518: Fixed integer overflow issues in "backslashreplace", by Serhiy Storchaka · 10 years ago
  47. 76e73f8 Bump to 3.3.6rc1 by Georg Brandl · 10 years ago
  48. 4480d30 ref #19855: skip uuid test_find_mac on non-Posix as in later branches by Georg Brandl · 10 years ago
  49. ff3e5e3 Fix unicode_aswidechar() for 4b unicode and 2b wchar_t (AIX). by Georg Brandl · 10 years ago
  50. 51c1162 Issue #19855: uuid.getnode() on Unix now looks on the PATH for the by Georg Brandl · 10 years ago
  51. 3bc3567 Backport b533cc11d114 to fix intermittent test_urllibnet failures. by Georg Brandl · 10 years ago
  52. 4615076 Add a dummy "touch" target to the Makefile so that the custom buildbots can test this branch. by Georg Brandl · 10 years ago
  53. 786c8e7 Fix-up for 0f362676460d: add missing size argument to SSLFakeFile.readline(), as in 2.6 backport 8a6def3add5b by Georg Brandl · 10 years ago
  54. 736b801 prevent overflow in unicode_repr (closes #22520) by Benjamin Peterson · 10 years ago
  55. bbd0a32 clear BufferedRWPair weakrefs on deallocation (closes #22517) by Benjamin Peterson · 10 years ago
  56. d48bc94 these variables ought to be Py_ssize_t by Benjamin Peterson · 10 years ago
  57. 42ff105 fix overflow checking in PyBytes_Repr (closes #22519) by Benjamin Peterson · 10 years ago
  58. 3bbb2e4 NEWS issue for #22518 by Benjamin Peterson · 10 years ago
  59. a1c1be4 cleanup overflowing handling in unicode_decode_call_errorhandler and unicode_encode_ucs1 (closes #22518) by Benjamin Peterson · 10 years ago
  60. e025b52 Issue #22419: Limit the length of incoming HTTP request in wsgiref server to 65536 bytes. by Senthil Kumaran · 10 years ago
  61. 2a42a0b Issue #22421 - Secure pydoc server run. Bind it to localhost instead of all interfaces. by Senthil Kumaran · 10 years ago
  62. 7d0b8f9 Lax cookie parsing in http.cookies could be a security issue when combined by Antoine Pitrou · 10 years ago
  63. 89e186f Issue #13540: Merge changes from 3.2 by Jason R. Coombs · 10 years ago
  64. 79690ac Issue #13540: Update references to Action class to match syntax used for other classes in this file. by Jason R. Coombs · 10 years ago
  65. eb0ef41 Issue #13540: Removed redundant documentation about Action instance attributes. Updated example and documentation per recommendations by Steven Bethard in msg149524. by Jason R. Coombs · 10 years ago
  66. 217f4cd Issue #21323: Fix http.server to again handle scripts in CGI subdirectories, by Ned Deily · 10 years ago
  67. 915a30f Issue #21323: Fix http.server to again handle scripts in CGI subdirectories, by Ned Deily · 10 years ago
  68. ac4b7f7 Closes #20872: dbm/gdbm/ndbm close methods are not documented by Jesus Cea · 10 years ago
  69. e8ef8b7 Closes #21441: Reorder elements in documentation to match actual order in the code by Jesus Cea · 10 years ago
  70. 0fd3972 merge 3.2 by Benjamin Peterson · 10 years ago
  71. 314dc12 expect the correct platform-dependent linesep by Benjamin Peterson · 10 years ago
  72. 6cd1954 merge 3.2 (#21766) by Benjamin Peterson · 10 years ago
  73. 73b8b1c url unquote the path before checking if it refers to a CGI script (closes #21766) by Benjamin Peterson · 10 years ago
  74. 13266fb Update docs to reflect resurrection of Setuptools over Distribute by Jason R. Coombs · 10 years ago
  75. ddf3438 The PyCOND_TIMEDWAIT must use microseconds for the timeout argument by Kristján Valur Jónsson · 10 years ago
  76. 8577e5a - Issue #17752: Fix distutils tests when run from the installed location. by doko@ubuntu.com · 10 years ago
  77. 024c5ee Document the subprocess Popen.args attribute (issue21353) by Gregory P. Smith · 10 years ago
  78. 98816bd merge 3.2 by Benjamin Peterson · 10 years ago
  79. 49991de fix poor spelling by Benjamin Peterson · 10 years ago
  80. 9beee04 merge 3.2 by Benjamin Peterson · 10 years ago
  81. 6ef2b36 disallow a negative idx parameter by Benjamin Peterson · 10 years ago
  82. 156285c merge 3.2 by Benjamin Peterson · 10 years ago
  83. 99b5afa in scan_once, prevent the reading of arbitrary memory when passed a negative index by Benjamin Peterson · 10 years ago
  84. f5c3405 minor docfix (reported at docs@python.org) trace.py argument is --count not --counts by Senthil Kumaran · 10 years ago
  85. 7e90bc4 merge 3.2 by Benjamin Peterson · 10 years ago
  86. 80e6af1 fix versionchanged version by Benjamin Peterson · 10 years ago
  87. 4717e21 merge 3.2 (#21082) by Benjamin Peterson · 10 years ago
  88. ee5f1c1 remove directory mode check from makedirs (closes #21082) by Benjamin Peterson · 10 years ago
  89. b25e3f9 merge 3.2 by Benjamin Peterson · 10 years ago
  90. b4be376 use https docs url (#21115) by Benjamin Peterson · 10 years ago
  91. aa2d085 merge 3.2 by Benjamin Peterson · 10 years ago
  92. 8aef28a add Ian Beer by Benjamin Peterson · 10 years ago
  93. 0ad6098 merge 3.2 by Benjamin Peterson · 10 years ago
  94. 23cf403 fix expandtabs overflow detection to be consistent and not rely on signed overflow by Benjamin Peterson · 10 years ago
  95. e558181 Issue #20939: Use www.example.com instead of www.python.org to avoid test by Ned Deily · 10 years ago
  96. fd9262c Issue #16039: CVE-2013-1752: Change use of readline in imaplib module to limit by Georg Brandl · 10 years ago
  97. 0840b41 Issue #22421 - Secure pydoc server run. Bind it to localhost instead of all interfaces. by Georg Brandl · 10 years ago
  98. dad182c Lax cookie parsing in http.cookies could be a security issue when combined by Antoine Pitrou · 10 years ago
  99. 860c367 Issue #22419: Limit the length of incoming HTTP request in wsgiref server to by Georg Brandl · 10 years ago
  100. 21bf3f9 Issue #22517: When a io.BufferedRWPair object is deallocated, clear its by Georg Brandl · 10 years ago