1. 4b16818 Issue #22518: Fixed integer overflow issues in "backslashreplace", by Serhiy Storchaka · 10 years ago
  2. 76e73f8 Bump to 3.3.6rc1 by Georg Brandl · 10 years ago
  3. 736b801 prevent overflow in unicode_repr (closes #22520) by Benjamin Peterson · 10 years ago
  4. bbd0a32 clear BufferedRWPair weakrefs on deallocation (closes #22517) by Benjamin Peterson · 10 years ago
  5. d48bc94 these variables ought to be Py_ssize_t by Benjamin Peterson · 10 years ago
  6. 42ff105 fix overflow checking in PyBytes_Repr (closes #22519) by Benjamin Peterson · 10 years ago
  7. 3bbb2e4 NEWS issue for #22518 by Benjamin Peterson · 10 years ago
  8. a1c1be4 cleanup overflowing handling in unicode_decode_call_errorhandler and unicode_encode_ucs1 (closes #22518) by Benjamin Peterson · 10 years ago
  9. e025b52 Issue #22419: Limit the length of incoming HTTP request in wsgiref server to 65536 bytes. by Senthil Kumaran · 10 years ago
  10. 2a42a0b Issue #22421 - Secure pydoc server run. Bind it to localhost instead of all interfaces. by Senthil Kumaran · 10 years ago
  11. 7d0b8f9 Lax cookie parsing in http.cookies could be a security issue when combined by Antoine Pitrou · 10 years ago
  12. 89e186f Issue #13540: Merge changes from 3.2 by Jason R. Coombs · 10 years ago
  13. 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
  14. 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
  15. 217f4cd Issue #21323: Fix http.server to again handle scripts in CGI subdirectories, by Ned Deily · 10 years ago
  16. 915a30f Issue #21323: Fix http.server to again handle scripts in CGI subdirectories, by Ned Deily · 10 years ago
  17. ac4b7f7 Closes #20872: dbm/gdbm/ndbm close methods are not documented by Jesus Cea · 10 years ago
  18. e8ef8b7 Closes #21441: Reorder elements in documentation to match actual order in the code by Jesus Cea · 10 years ago
  19. 0fd3972 merge 3.2 by Benjamin Peterson · 10 years ago
  20. 314dc12 expect the correct platform-dependent linesep by Benjamin Peterson · 10 years ago
  21. 6cd1954 merge 3.2 (#21766) by Benjamin Peterson · 10 years ago
  22. 73b8b1c url unquote the path before checking if it refers to a CGI script (closes #21766) by Benjamin Peterson · 10 years ago
  23. 13266fb Update docs to reflect resurrection of Setuptools over Distribute by Jason R. Coombs · 10 years ago
  24. ddf3438 The PyCOND_TIMEDWAIT must use microseconds for the timeout argument by Kristján Valur Jónsson · 10 years ago
  25. 8577e5a - Issue #17752: Fix distutils tests when run from the installed location. by doko@ubuntu.com · 10 years ago
  26. 024c5ee Document the subprocess Popen.args attribute (issue21353) by Gregory P. Smith · 10 years ago
  27. 98816bd merge 3.2 by Benjamin Peterson · 10 years ago
  28. 49991de fix poor spelling by Benjamin Peterson · 10 years ago
  29. 9beee04 merge 3.2 by Benjamin Peterson · 10 years ago
  30. 6ef2b36 disallow a negative idx parameter by Benjamin Peterson · 10 years ago
  31. 156285c merge 3.2 by Benjamin Peterson · 10 years ago
  32. 99b5afa in scan_once, prevent the reading of arbitrary memory when passed a negative index by Benjamin Peterson · 10 years ago
  33. f5c3405 minor docfix (reported at docs@python.org) trace.py argument is --count not --counts by Senthil Kumaran · 10 years ago
  34. 7e90bc4 merge 3.2 by Benjamin Peterson · 10 years ago
  35. 80e6af1 fix versionchanged version by Benjamin Peterson · 10 years ago
  36. 4717e21 merge 3.2 (#21082) by Benjamin Peterson · 10 years ago
  37. ee5f1c1 remove directory mode check from makedirs (closes #21082) by Benjamin Peterson · 10 years ago
  38. b25e3f9 merge 3.2 by Benjamin Peterson · 10 years ago
  39. b4be376 use https docs url (#21115) by Benjamin Peterson · 10 years ago
  40. aa2d085 merge 3.2 by Benjamin Peterson · 10 years ago
  41. 8aef28a add Ian Beer by Benjamin Peterson · 10 years ago
  42. 0ad6098 merge 3.2 by Benjamin Peterson · 10 years ago
  43. 23cf403 fix expandtabs overflow detection to be consistent and not rely on signed overflow by Benjamin Peterson · 10 years ago
  44. 3e952d5 Issue #20633: Replace relative import by absolute import. by Richard Oudkerk · 10 years ago
  45. 56d3a03 Update doc version switcher for 3.4/3.5. by Georg Brandl · 10 years ago
  46. a48d9ea improve set_tunnel docs (closes #11448) by Benjamin Peterson · 10 years ago
  47. fda3355 fix ctypes test alignment assumptions (closes #20946) by Benjamin Peterson · 10 years ago
  48. 790bf0d Close #16665: improve documentation for hex(). Patch by Jessica McKellar. by Antoine Pitrou · 10 years ago
  49. 0392271 send people to the right editors page (#20938) by Benjamin Peterson · 10 years ago
  50. b454742 Issue #20939: Fix test_geturl failure in test_urllibnet due to by Ned Deily · 10 years ago
  51. 5128173 remove runtime_library_dirs for _sqlite; it isn't needed by Benjamin Peterson · 10 years ago
  52. 4a42cd4 avoid referencing past the bounds of an array by Benjamin Peterson · 10 years ago
  53. c77e7a4 only define zero constant when it is used by Benjamin Peterson · 10 years ago
  54. ce68c19 remove unused zero constants by Benjamin Peterson · 10 years ago
  55. fdbe918 #20933: At least one place maps 'test' to 'localhost'...fix test. by R David Murray · 10 years ago
  56. ef87f8c avoid referencing out-of-bounds memory by Benjamin Peterson · 10 years ago
  57. 45c9dce fix c89 declaration order by Benjamin Peterson · 10 years ago
  58. 041c38a don't do pointer arithmetic with signed numbers by Benjamin Peterson · 10 years ago
  59. e5cb836 #7475: Remove references to '.transform' from transform codec docstrings. by R David Murray · 10 years ago
  60. ef04c59 Clarify distutils’ clean command (ref #6142) by Éric Araujo · 10 years ago
  61. 782c4cf Closes #20908: Memory leak in Reg2Py() by Jesus Cea · 10 years ago
  62. 45fc871 Make distutils error messages more helpful (#11599). by Éric Araujo · 10 years ago
  63. 966f2fc weaken callback count inequality (closes #20901) by Benjamin Peterson · 10 years ago
  64. 5eea8a7 remove unnecessary word (closes #19060) by Benjamin Peterson · 10 years ago
  65. fa5e6e4 Fix note markup (#16805). by Éric Araujo · 10 years ago
  66. d0fc83d merge 3.2 (#20896) by Benjamin Peterson · 10 years ago
  67. cf25c5c use ssl.PROTOCOL_SSLv23 for maximum compatibility (closes #20896) by Benjamin Peterson · 10 years ago
  68. f993399 add Sean Rodman by Benjamin Peterson · 10 years ago
  69. bb185ab use support.rmtree instead of shutil (closes #19614) by Benjamin Peterson · 10 years ago
  70. fc773a2 Avoid “error: None” messages from distutils (#4931). by Éric Araujo · 10 years ago
  71. ed5d95b #20030: doc that TestLoader.discover returns a TestSuite. by R David Murray · 10 years ago
  72. 8e4b3c7 improve algorithms_* documentation by Benjamin Peterson · 10 years ago
  73. bfca3ca fix typo (closes #20892) by Benjamin Peterson · 10 years ago
  74. 18a364f Closes #20090: update Doc/README and the error message in sphinx-build.py to make by Georg Brandl · 10 years ago
  75. 14d7b71 #19953: Clarify the wording of the augmented assignment discussion. by R David Murray · 10 years ago
  76. 6120739 Issue #20875: Prevent possible gzip "'read' is not defined" NameError. by Ned Deily · 10 years ago
  77. 5e572fd merge with 3.3.5 release repo by Georg Brandl · 10 years ago
  78. 92d2d34 Post-release update. by Georg Brandl · 10 years ago
  79. e46abb4 hgtouch: remove meta-variable from option spec by Georg Brandl · 10 years ago
  80. 1e7b1dc Added tag v3.3.5 for changeset 62cf4e77f785 by Georg Brandl · 10 years ago
  81. fbd7518 Bump to 3.3.5 final. by Georg Brandl · 10 years ago
  82. 95b696a #10197: Update get[status]output versionchanged with actual version. by R David Murray · 10 years ago
  83. c39e892 Issue #20813: Backport Python 2/3 HOWTO updates by Brett Cannon · 10 years ago
  84. 54d04a4 Make pywlauncher.vcxproj depend on make_versioninfo.vcxproj. by Zachary Ware · 10 years ago
  85. ccdf352 Issue #20283: RE pattern methods now accept the string keyword parameters by Serhiy Storchaka · 10 years ago
  86. 25dded0 Make the various iterators' "setstate" sliently and consistently clip the by Kristján Valur Jónsson · 10 years ago
  87. 4ca688e Fix pickling of rangeiter. rangeiter_setstate would not allow setting it by Kristján Valur Jónsson · 10 years ago
  88. 682ea5f Correct comments and improve failure reports in test_fileinput (closes #20501). by Serhiy Storchaka · 10 years ago
  89. 444c171 Added tag v3.3.5rc2 for changeset ca5635efe090 by Georg Brandl · 10 years ago
  90. c186b23 Bump to 3.3.5rc2. by Georg Brandl · 10 years ago
  91. bb386cf Update NEWS for 3.3.5rc2. by Georg Brandl · 10 years ago
  92. 2fc8f77 Issue #20404: reject non-text encodings early in TextIOWrapper. by Georg Brandl · 10 years ago
  93. 2658bad merge 3.3.5rc1 release commits with 3.3 branch by Georg Brandl · 10 years ago
  94. 9e90b12 add Chris Angelico by Benjamin Peterson · 10 years ago
  95. 659a6f5 fix test_posix.test_initgroups to work without supplemental groups (closes #20249) by Benjamin Peterson · 10 years ago
  96. b77bf32 fix test on debug builds (closes #20731) by Benjamin Peterson · 10 years ago
  97. 4f8e4c2 merge 3.2 by Benjamin Peterson · 10 years ago
  98. 298bb96 Issue #20778: Fix modulefinder to work with bytecode-only modules. by Brett Cannon · 10 years ago
  99. 815b41b Issue #20731: Properly position in source code files even if they by Martin v. Löwis · 10 years ago
  100. 9db1ab8 Issue #20567: Delete class attribute gui widgets in idle tests. by Terry Jan Reedy · 10 years ago