1. 5f7e734 Issue 10484 - Incorporate improvements to CGI module - Suggested by Glenn Linderman. Refactor code and tests by Senthil Kumaran · 12 years ago
  2. fb2e874 fix the incorrect changes made for PATH_INFO value - Issue10484 by Senthil Kumaran · 12 years ago
  3. ad6b3f5 merge 2.7.3 release branch by Benjamin Peterson · 12 years ago
  4. e95a8f6 bump to 2.7.3 final by Benjamin Peterson · 12 years ago
  5. b5588c3 Fix the patch for issue #7978: select() raises select.error before 3.3, not OSError. by Antoine Pitrou · 12 years ago
  6. 467a5c4 Fix flakiness in test_socketserver by Antoine Pitrou · 12 years ago
  7. fa1d841 Issue #7978: socketserver now restarts the select() call when EINTR is returned. by Antoine Pitrou · 12 years ago
  8. 088a874 Make test_mailbox runnable via python -m unittest. by R David Murray · 12 years ago
  9. f14a2bf Transplant 45287f2799f5 from default branch. by Georg Brandl · 12 years ago
  10. b6e21a0 remove uneeded line by Benjamin Peterson · 12 years ago
  11. f73813a prevent writing to stderr from messing up the exception state (closes #14474) by Benjamin Peterson · 12 years ago
  12. 93a224d #14434: make tutorial link in 'help' banner version-specific by R David Murray · 12 years ago
  13. 8af8729 update NEWS for 2.7 as Terry Reedy proposed by Andrew Svetlov · 12 years ago
  14. afa2e47 Added a new crasher that targets mutating the underlying storage of a buffer. All work done by Armin Rigo. by Alex Gaynor · 12 years ago
  15. 7ce9bda Closes #14436: Convert msg + args to string before pickling. by Vinay Sajip · 12 years ago
  16. c37db10 Backport of Issue #14409 to 2.7 by Andrew Svetlov · 12 years ago
  17. c56e667 Closes #14411: remove outdated comment in rlcompleter docstring. by Georg Brandl · 12 years ago
  18. 4922a46 #5301: re-add image/vnd.microsoft.icon per discussion by R David Murray · 12 years ago
  19. 50d6f54 Closes #14314: backported fix. by Vinay Sajip · 12 years ago
  20. ea605cd attempt to fix asyncore buildbot failure by Giampaolo Rodola' · 12 years ago
  21. 96cb5d1 fix #10340: properly handle EINVAL on OSX and also avoid to call handle_connect() in case of a disconnetected socket which is not meant to connect. by Giampaolo Rodola' · 12 years ago
  22. 72c6227 merge heads by Benjamin Peterson · 12 years ago
  23. eff19a1 check by equality for __future__ not identity (closes #14378) by Benjamin Peterson · 12 years ago
  24. b3f95d7 #12757: Make doctest skipping in -OO mode work with unittest/regrtest -v by R David Murray · 12 years ago
  25. 7c010ee #3573: idle now doesn't hungs if launched as: idle -e <directory> by Andrew Svetlov · 12 years ago
  26. 3d3cf48 Fix issue #13694: asynchronous connect in asyncore.dispatcher does not set addr. by Giampaolo Rodola' · 12 years ago
  27. 5c2689a #14333: fix test_queue so it can be run via standard unittest test discovery. by R David Murray · 12 years ago
  28. dbc52f8 check for string attribute names in old-style classes (closes #14334) by Benjamin Peterson · 12 years ago
  29. 6e7832b check to make sure the attribute is a string (#14334) by Benjamin Peterson · 12 years ago
  30. 51a65c9 2.7 - Issue #10484: Fix the CGIHTTPServer's PATH_INFO handling problem by Senthil Kumaran · 12 years ago
  31. 4c59211 Fix the urllib closing issue which hangs on particular ftp urls/ftp servers. closes issue11199 by Senthil Kumaran · 12 years ago
  32. f1acd0a merge from 2.7 release branch by Benjamin Peterson · 12 years ago
  33. ee933ec bump to 2.7.3rc2 by Benjamin Peterson · 12 years ago
  34. f163efd Issue #5219: Prevent event handler cascade in IDLE. Patch by Roger Serwy. by Martin v. Löwis · 12 years ago
  35. 71e51d6 Merged upstream change. by Vinay Sajip · 12 years ago
  36. 9790e08 Closes #14267: Corrected computation of rollover filename. by Vinay Sajip · 12 years ago
  37. d17a898 Fix closes Issue14281 - Test for cgi.escape by Brian Landers by Senthil Kumaran · 12 years ago
  38. b56b6ff #14179: add tests for re.compile. Patch by Florian Mladitsch. by Ezio Melotti · 12 years ago
  39. b60156e #14161: fix test failures on Windows. by Ezio Melotti · 12 years ago
  40. 11f8b68 #14161: fix the __repr__ of file objects to escape the file name. by Ezio Melotti · 12 years ago
  41. f60845b Issue #14252: Fix subprocess.Popen.terminate() to not raise an error under Windows when the child process has already exited. by Antoine Pitrou · 12 years ago
  42. e107ab3 Moved symlink support into its own module. Ported can_symlink from Python 3.2, skipping symlink test when it cannot be invoked (such as when the symlink privilege is not present). by Jason R. Coombs · 12 years ago
  43. ea4629a Improve the test case to avoid spurious errors about already existing symlinks. by Jason R. Coombs · 12 years ago
  44. 021eddf Fix long-standing bugs with MANIFEST.in parsing on Windows (#6884). by Éric Araujo · 12 years ago
  45. 94e5c93 update pydoc-topics by Benjamin Peterson · 12 years ago
  46. a2aa2ef bump to 2.7.3rc1 by Benjamin Peterson · 12 years ago
  47. 341016e Fix sporadic test_os failure under Windows by Antoine Pitrou · 12 years ago
  48. 4b670f5 Fix (presumably) test_hash under big-endian systems (PPC). by Antoine Pitrou · 12 years ago
  49. 9329153 Avoid py3k warnings related to sort() of unrelated types. by Antoine Pitrou · 12 years ago
  50. 0607f73 Fix flaky os.urandom test. by Antoine Pitrou · 12 years ago
  51. e39ccef carefully don't depend on any dict order by Benjamin Peterson · 12 years ago
  52. b6596c5 remove extra zero by Benjamin Peterson · 12 years ago
  53. 4ab701b sqlite3: Fix 64-bit integer handling in user functions on 32-bit architectures by Petri Lehtinen · 12 years ago
  54. 36b7361 HTMLParser is now able to handle slashes in the start tag. by Ezio Melotti · 12 years ago
  55. c7bbd7b don't rely on dict order by Benjamin Peterson · 12 years ago
  56. c59df7d a frozenset is better here by Benjamin Peterson · 12 years ago
  57. 7405934 use set by Benjamin Peterson · 12 years ago
  58. f093724 don't rely on dict order by Benjamin Peterson · 12 years ago
  59. 72949bd this was supposed to die by Benjamin Peterson · 12 years ago
  60. 11fa11b fix test_gdb under hash randomization by Benjamin Peterson · 12 years ago
  61. 5bc92e0 don't rely on dict order here by Benjamin Peterson · 12 years ago
  62. aee9dfb merge 2.6 with hash randomization fix by Benjamin Peterson · 12 years ago
  63. b19fb24 Whitespace normalization by Barry Warsaw · 12 years ago
  64. 1e13eb0 - Issue #13703: oCERT-2011-003: add -R command-line option and PYTHONHASHSEED by Barry Warsaw · 12 years ago
  65. 34b345b don't rely on the order of module clearing by Benjamin Peterson · 12 years ago
  66. f5a5beb Back port Python 2.7 fix for test_invalid_redirect() in test_urllib.py. by Barry Warsaw · 12 years ago
  67. f5f6af8 Fix Test for issue #13500 by Jesus Cea · 12 years ago
  68. 6e25099 Test for issue #13500 by Jesus Cea · 12 years ago
  69. e062466 Issue #14001: CVE-2012-0845: xmlrpc: Fix an endless loop in SimpleXMLRPCServer by Charles-François Natali · 12 years ago
  70. 66f3cc6 Issue #14001: CVE-2012-0845: xmlrpc: Fix an endless loop in SimpleXMLRPCServer by Charles-François Natali · 12 years ago
  71. 437b149 Fix a variable scoping error in an sqlite3 test by Petri Lehtinen · 12 years ago
  72. b4b6056 Issue #2489: Fix bug in _copy loop that could consume 100% cpu on EOF. by Gregory P. Smith · 12 years ago
  73. c82da81 Fix test failure for shared builds caused by #1326113 fix by Éric Araujo · 12 years ago
  74. e897a74 Fix parsing of build_ext --libraries option (#1326113) by Éric Araujo · 12 years ago
  75. 65d36da #13987: HTMLParser is now able to handle malformed start tags. by Ezio Melotti · 12 years ago
  76. d2307cb #13987: HTMLParser is now able to handle EOFs in the middle of a construct. by Ezio Melotti · 12 years ago
  77. ff337cc Issue #13979: Fix ctypes.util.find_library ldconfig regex by Meador Inge · 12 years ago
  78. e1dbbbf re.escape os.sep so that \ is interpreted properly in the regex. by Gregory P. Smith · 12 years ago
  79. d9c2df8 Issue #13930: fix a / to use os.sep so that the test works on Windows. by Gregory P. Smith · 12 years ago
  80. c48c16e Issue #13193: Fix distutils.filelist tests to always use / as path separator. by Nadeem Vawda · 12 years ago
  81. 369cbd7 Fix an index, add more tests, avoid raising errors for unknown declarations, and clean up comments. by Ezio Melotti · 12 years ago
  82. f117443 #13993: HTMLParser is now able to handle broken end tags. by Ezio Melotti · 12 years ago
  83. 4b92cc3 #13960: HTMLParser is now able to handle broken comments. by Ezio Melotti · 12 years ago
  84. 32b6371 fix whitespace normalization before pushing. by Gregory P. Smith · 12 years ago
  85. 1242699 Issue #13930: Adds ability for 2to3 to write its output to a different by Gregory P. Smith · 12 years ago
  86. 587209f Fix sqlite3.Connection.iterdump on tables/fields with reserved names or quotes by Petri Lehtinen · 12 years ago
  87. 6faad8d Fix distutils.filelist.FileList under Windows (#13193). by Éric Araujo · 12 years ago
  88. c47a459 Issue #13994: Earler partial revert of Distutils enhancements in 2.7 by Ned Deily · 12 years ago
  89. 0d0ea48 Issue #13590: On OS X 10.7 and 10.6 with Xcode 4.2, building by Ned Deily · 12 years ago
  90. ebf691d Skip test_threading.test_reinit_tls_after_fork() on platforms where fork() by Charles-François Natali · 12 years ago
  91. c7fd523 Issue #10811: Fix recursive usage of cursors. Instead of crashing, raise a ProgrammingError now. by Petri Lehtinen · 13 years ago
  92. 2c8bf04 Issue #10881: Fix test_site failures with OS X framework builds. by Ned Deily · 12 years ago
  93. adb87e2 Issue 964437 Make IDLE help window non-modal. by Terry Jan Reedy · 12 years ago
  94. d76c1bf #13933 refine patch using 'new' builtin by Terry Jan Reedy · 12 years ago
  95. 25e70fd Issue #12142: Fixed reference cycle when importing ctypes by Meador Inge · 12 years ago
  96. 61c9534 Issue #13933: IDLE auto-complete did not work with some imported by Ned Deily · 12 years ago
  97. 60be6f8 Fix failing test on big-endian machines (issue #13806). by Antoine Pitrou · 12 years ago
  98. 709aa35 Issue #8184: Fix a potential file descriptor leak when a by Charles-François Natali · 12 years ago
  99. 0013783 remove unused import by Benjamin Peterson · 12 years ago
  100. 22d2711 Issue #13861: Prevent test_apropos* test case failures in test_pydoc. by Ned Deily · 12 years ago