1. b111970 backport change 55821 to release25-maint by Kristján Valur Jónsson · 18 years ago
  2. d2acc2e Patch #1667860: Fix UnboundLocalError in urllib2. (backport from rev. 55805) by Georg Brandl · 18 years ago
  3. 73c958a Disallow function calls like foo(None=1). by Georg Brandl · 18 years ago
  4. c98da3d Backport rev. 55783: Patch by Tim Delany (missing DECREF). SF #1731330. by Georg Brandl · 18 years ago
  5. fc41f19 Fix for Windows: close a temporary file before trying to delete it. by Hye-Shik Chang · 18 years ago
  6. 60111e0 (Backport from r55770) by Hye-Shik Chang · 18 years ago
  7. c9490e2 Backport of r55752: make time.strptime() behave better when whitespace is in by Brett Cannon · 18 years ago
  8. 2413e03 Backport 55731: by Neal Norwitz · 18 years ago
  9. 2e23bb7 Fix wrong issue number. (backport from rev. 55735) by Georg Brandl · 18 years ago
  10. ba871a0 Bug #1722484: remove docstrings again when running with -OO. by Georg Brandl · 18 years ago
  11. b40092b Merged revisions 55677 via svnmerge from by Thomas Heller · 18 years ago
  12. 8c6ec81 Updated docstring for SysLogHandler (#1720726). by Vinay Sajip · 18 years ago
  13. 425c614 Updated documentation for SysLogHandler (#1720726). by Vinay Sajip · 18 years ago
  14. 35cff5f Document "new" params to HTTPConnection/HTTPSConnection by Neal Norwitz · 18 years ago
  15. 1370308 Backport rev 55465 by Nick Coghlan. by Georg Brandl · 18 years ago
  16. df73802 Backout the original 'fix' to 1721309 which had no effect. by Neal Norwitz · 18 years ago
  17. 73bf101 Backport rev 55452: by Neal Norwitz · 18 years ago
  18. f86ae69 Backport rev 55450: by Neal Norwitz · 18 years ago
  19. cf0fab2 Verify neither dumps or loads overflow the stack and segfault. by Neal Norwitz · 18 years ago
  20. ce15dce Drop the max stack depth to something that works in 2.6 by Neal Norwitz · 18 years ago
  21. 2cb077a fix argument name in documentation; match the implementation by Fred Drake · 18 years ago
  22. dc78cc6 Fix bug in marshal where bad data would cause a segfault due to by Neal Norwitz · 18 years ago
  23. 4043a6b Bug #1719995: don't use deprecated method in sets example. by Georg Brandl · 18 years ago
  24. 5ece2fb Add what looks like a necessary call to PyErr_NoMemory() when PyMem_MALLOC() by Neal Norwitz · 18 years ago
  25. 4c87581 HTML-escape the plain traceback in cgitb's HTML output, to prevent by Georg Brandl · 18 years ago
  26. 0d338e4 Bug #1046945: document SWIG options of distutils. (backport from rev. 55287) by Georg Brandl · 18 years ago
  27. 39d8cc74 Update DDJ link. (backport from rev. 55259) by Georg Brandl · 18 years ago
  28. 5a25e45 Patch #1714700: clarify os.linesep vs. tfiles opened in text mode. (backport) by Georg Brandl · 18 years ago
  29. 914c98b Fix typo in docstring (the module is popen2, not 3). by Neal Norwitz · 18 years ago
  30. e4b5c33 Mark blocked revisions. by Thomas Heller · 18 years ago
  31. 455c4b3 Mark already merged revisions. by Thomas Heller · 18 years ago
  32. 0ac6061 Backport checkin: by Walter Dörwald · 18 years ago
  33. 6ca6f14 Backport r55070: Stop using PyMem_FREE while the GIL is not held. by Neal Norwitz · 18 years ago
  34. 27803ce Backport: Add markup for True/False. by Neal Norwitz · 18 years ago
  35. a01d660 Merge change 54983 from the trunk: Add the locale "English" to test_locale.py for a windows run, since "En" isn't legal for the Visual C 8 runtime. This update restores full testsuite compliance to VisualStudio 2005 builds, apart from unavailible external modules. by Kristján Valur Jónsson · 18 years ago
  36. a1392d5 Merge change 54982 from the trunk. This fixes the test_subprocess test in the testsuite for VisualStudio2005 builds, by "sanitizing" the "mode" that is used in the posixmodule's fdopen(). In particular the non-standard "U" mode character is removed. by Kristján Valur Jónsson · 18 years ago
  37. dffe9a2 the nb_long slot on classobject instances now defaults to call the nb_int slot member if there is no __long__ attribute found. This is in accordance with a suggestion from Armin Rigo, and allows the test_getargs2.py test in the testsuite for x64 by Kristján Valur Jónsson · 18 years ago
  38. f4601d8 Fix two problems that emerged when the testsuite was run with an x64 build: PyLong_FromSSize_t incorrectly assumed an unsigned object, and itertools.count() had the wrong upper limit for the iterator. by Kristján Valur Jónsson · 18 years ago
  39. b4c285a Fix NonRecursiveMutex on x64. The signature of the faux-InterlockedCompareExchange function was wrong: It works with LONG and not PVOID objects, and it needs to have the target marked as volatile. Further, it is not needed at all for x64 targets, since that platform always has the real McCoy. by Kristján Valur Jónsson · 18 years ago
  40. 7bca027 Merging change 55102 from the trunk: by Kristján Valur Jónsson · 18 years ago
  41. 4e6b5e9 Bug #1713535 backport. by Georg Brandl · 18 years ago
  42. b4c0bea Merging changes 55092, 55101,55120 from trunk, making PCBuild8 solution up to date. by Kristján Valur Jónsson · 18 years ago
  43. a982bb1 Blocked revisions 54357 via svnmerge by Thomas Heller · 18 years ago
  44. f8f68fb Backport checkin: by Walter Dörwald · 18 years ago
  45. 412b20b Merged revisions 55027 via svnmerge from by Thomas Heller · 18 years ago
  46. e5ebbec Additional changes to the property sheets in PCBuild8. Visual Studio doesn's save those when it builds, unlike the .vcproj files, so I chekced in out-of-date versions. by Kristján Valur Jónsson · 18 years ago
  47. 00b0a9e Undefine the Yield macro after including Python_ast.h where it may cause conflicts with winbase.h on Windows. by Kristján Valur Jónsson · 18 years ago
  48. 55d53f0 Merging of change 55024 from the truk to release25-maint branch. by Kristján Valur Jónsson · 18 years ago
  49. 9aa62ff Patch #1710352: add missing public functions to locale.__all__. by Georg Brandl · 18 years ago
  50. be69a0a Bug #1710295: exceptions are now new-style classes. (backport from rev. 55036) by Georg Brandl · 18 years ago
  51. f69fa17 Merged revisions 55025 via svnmerge from by Thomas Heller · 18 years ago
  52. 80a42c0 Update with the version that has been running for a while. Most of by Neal Norwitz · 18 years ago
  53. daa2e58 Backport fix for r54646-7: properly clear locale cache in time.strptime when by Brett Cannon · 18 years ago
  54. a801b6a Backport r54712: document that calling file.next() on a file open for writing by Brett Cannon · 18 years ago
  55. c22aee0 Version fix (bug #1708710) by Georg Brandl · 18 years ago
  56. 12c2950 fix some markup errors by Fred Drake · 18 years ago
  57. ca3b7b5 bump email package version to 4.0.2 by Barry Warsaw · 18 years ago
  58. 44dab0a Whitespace normalization by Neal Norwitz · 18 years ago
  59. eeff493 Markup fix. (backport from rev. 54951) by Georg Brandl · 18 years ago
  60. d1e3f6d Patch #1698768: updated the "using Python on the Mac" intro. by Georg Brandl · 18 years ago
  61. 4db90ac Fix markup by Raymond Hettinger · 18 years ago
  62. f784d91 Bug #1706381: Specifying the SWIG option "-c++" in the setup.py file by Georg Brandl · 18 years ago
  63. 22c00e0 Bug #1705717: error in sys.argv docs. (backport from rev. 54939) by Georg Brandl · 18 years ago
  64. 46155b9 Some new year updates. by Georg Brandl · 18 years ago
  65. 112717d Fix SF #1703110, Incorrect example for add_password() (use uri, not host) by Neal Norwitz · 18 years ago
  66. 6def78a Convert PyUnit -> unittest. Backported from r54929. by Collin Winter · 18 years ago
  67. 2f131d8 Recommit r54805: by Barry Warsaw · 18 years ago
  68. b9d3991 Properly implement Georg Brandl's Patch #1185447 to the 2.5 maintainance branch by Kristján Valur Jónsson · 18 years ago
  69. 15136b3 Bug #1704790: bind name "sys" locally in __del__ method so that it is by Georg Brandl · 18 years ago
  70. 5e4e31f Fix various minor issues discovered with static analysis using Visual Studio 2005 Team System. by Kristján Valur Jónsson · 18 years ago
  71. 8ff1f6a Bug #1704156: Support for unicode strings as input filenames is by Lars Gustäbel · 18 years ago
  72. 93a3603 Backport r54786: by Walter Dörwald · 18 years ago
  73. 552ba11 Backport r54671 - fix in python.sty. by Georg Brandl · 18 years ago
  74. 104377b Backport r54762: exceptions are no longer old-style instances. by Georg Brandl · 18 years ago
  75. 82966e5 Backport r54763: repair missing spaces after \UNIX. by Georg Brandl · 18 years ago
  76. 6cf5abf Backport r54787 - better error messages in rexec and bastion by Georg Brandl · 18 years ago
  77. 1dfa8ac Backport r54757 - missing NULL checks. by Georg Brandl · 18 years ago
  78. 9319e43 Patch #1695229: Fix a regression with tarfile.open() and a missing name by Lars Gustäbel · 18 years ago
  79. d220144 Fix directory names to have only one trailing slash. by Lars Gustäbel · 18 years ago
  80. 9701832 Tagging for release of Python 2.5.1 by Anthony Baxter · 18 years ago
  81. ef57abd 2.5.1 final by Anthony Baxter · 18 years ago
  82. 87b5d91 Revert 53667 by Raymond Hettinger · 18 years ago
  83. e6e383f Revert SF #1615701 (rev 53655): dict.update() does *not* call __getitem__() or by Neal Norwitz · 18 years ago
  84. 8d61db5 Revert 54805 for 2.5.1 release. Can be applied after 2.5 branch is unfrozen. by Neal Norwitz · 18 years ago
  85. 03c566a Revert 54813 for 2.5.1 release. Can be applied after 2.5 branch is unfrozen. by Neal Norwitz · 18 years ago
  86. a4ff44a Revert 54815 for 2.5.1 release. Can be applied after 2.5 branch is unfrozen. by Neal Norwitz · 18 years ago
  87. 16b7b53 SF #1701207: svnversion_init assertion failed by Neal Norwitz · 18 years ago
  88. a30d8bd Fix potential crash in path manipulation on windows by Kristján Valur Jónsson · 18 years ago
  89. 9d9fbb4 Fix a bug when using the __lltrace__ opcode tracer, and a problem sith signed chars in frameobject.c which can occur with opcodes > 127 by Kristján Valur Jónsson · 18 years ago
  90. 9bd522d Add code to read from master_fd in the parent, breaking when we get an OSError by Barry Warsaw · 18 years ago
  91. 9df5fa0 Describe undocumented third argument to touchline() by Andrew M. Kuchling · 18 years ago
  92. 2ae2f75 Tagging for release of Python 2.5.1c1 by Anthony Baxter · 18 years ago
  93. ef4364f Fix unpack so it works on 64-bit platforms. by Neal Norwitz · 18 years ago
  94. 9515c96 preparing for 2.5.1c1 by Anthony Baxter · 18 years ago
  95. b2064d7 Fix-up error-exits on struct_unpack(). by Raymond Hettinger · 18 years ago
  96. 3608f05 Bug #1563759: struct.unpack doens't support buffer protocol objects by Raymond Hettinger · 18 years ago
  97. 8863544 Bug #1686475: Support stat'ing open files on Windows again. by Martin v. Löwis · 18 years ago
  98. 5d2d2ef - Fix an off-by-one bug in locale.strxfrm(). by Matthias Klose · 18 years ago
  99. 9528905 SF #1382213: Tutorial section 9.5.1 ignores MRO for new-style classes by Raymond Hettinger · 18 years ago
  100. 6a390b3 SF 1602378 Clarify docstrings for bisect by Raymond Hettinger · 18 years ago