1. a5fe3ef Fix #1569998: no break inside try statement (outside loop) allowed. by Georg Brandl · 18 years ago
  2. 74284b9 Patch #1542451: fix crash with continue in nested try/finally by Georg Brandl · 18 years ago
  3. d79524a [Backport to 2-5maint of r52147 | andrew.kuchling ; the buildbots seem OK by Andrew M. Kuchling · 18 years ago
  4. 4b63c21 Forward-port of r52136: a review of overflow-detecting code. by Armin Rigo · 18 years ago
  5. 10525ad Fix integer negation and absolute value to not rely by Martin v. Löwis · 18 years ago
  6. da70fd1 Fix test for uintptr_t. Fixes #1568842. by Martin v. Löwis · 18 years ago
  7. 0988904 Bug #1546052: clarify that PyString_FromString(AndSize) copies the by Georg Brandl · 18 years ago
  8. 1206a93 Bug #1446043: correctly raise a LookupError if an encoding name given by Georg Brandl · 18 years ago
  9. 6d7c363 Bug #1556784: allow format strings longer than 127 characters in by Georg Brandl · 18 years ago
  10. 7037745 Bug #1560617: in pyclbr, return full module name not only for classes, by Georg Brandl · 18 years ago
  11. 9c9a9ab Bug #1566602: correct failure of posixpath unittest when $HOME ends by Georg Brandl · 18 years ago
  12. ad4e11e Bug #1566663: remove obsolete example from datetime docs. by Georg Brandl · 18 years ago
  13. 506cc18 Bug #1566800: make sure that EnvironmentError can be called with any by Georg Brandl · 18 years ago
  14. af4337a Patch #1567691: super() and new.instancemethod() now don't accept by Georg Brandl · 18 years ago
  15. bbcb281 Bug #1565661: in webbrowser, split() the command for the default by Georg Brandl · 18 years ago
  16. 6fed793 fix: DB.stat flags and txn keyword arguments were backwards. by Gregory P. Smith · 18 years ago
  17. c57221e Backport rev. 51972: by Georg Brandl · 18 years ago
  18. 934c90d Backport rev. 51971: by Georg Brandl · 18 years ago
  19. edd81b2 Fix a bug in traceback.format_exception_only() that led to an error by Georg Brandl · 18 years ago
  20. a6b9ce1 Fix a bug in the parser's future statement handling that led to "with" by Georg Brandl · 18 years ago
  21. 1f21578 Fix webbrowser.BackgroundBrowser on Windows. (backport from rev. 51991) by Georg Brandl · 18 years ago
  22. 6cc16be added itertools.count(-n) fix by Jack Diederich · 18 years ago
  23. c70e003 Backport of fix to allow exception instances to be sliced once again. by Brett Cannon · 18 years ago
  24. 2d8697f Preparing for 2.5 final. by Anthony Baxter · 18 years ago
  25. 72345f2 remove 2.5 final section from NEWS.txt until after rc2 (reduced confusion) by Anthony Baxter · 18 years ago
  26. 2d4183c preparing for 2.5c2 by Anthony Baxter · 18 years ago
  27. 0bcafac Building with HP's cc on HP-UX turned up a couple of problems. by Neal Norwitz · 18 years ago
  28. 48829ba As mentioned on python-dev, reverting patch #1504333 because it introduced by Neal Norwitz · 18 years ago
  29. 2e488fd Add NEWS entries for ctypes backports. by Neal Norwitz · 18 years ago
  30. 19d76c5 Remove __unicode__ method so that ``unicode(BaseException)`` succeeds. by Brett Cannon · 18 years ago
  31. 62f19e4 Backport inspect.py fix from rev 51803 by Nick Coghlan · 18 years ago
  32. 137ae0c Backport from trunk r51737: by Hye-Shik Chang · 18 years ago
  33. d1b1b8c8 Fixed bug #1531862: Do not close standard file descriptors in subprocess. by Gustavo Niemeyer · 18 years ago
  34. 8a230b5 Backport bug fix for SF bug report #1546372. by Marc-André Lemburg · 18 years ago
  35. 4dc0952 Fix missing import of the types module in logging.config. by Georg Brandl · 18 years ago
  36. ecab623 Bug #1542051: Exceptions now correctly call PyObject_GC_UnTrack. by Georg Brandl · 18 years ago
  37. 37a9e57 Bug #1550983: emit better error messages for erroneous relative by Georg Brandl · 18 years ago
  38. b20cb33 Bug #1551427: fix a wrong NULL pointer check in the win32 version by Georg Brandl · 18 years ago
  39. f3ce2ab Revert 51759 because it broke all the buildbots by Neal Norwitz · 18 years ago
  40. 63d675c Backporting fix for bug #1531862, committed in 51758, into 2.5, by Gustavo Niemeyer · 18 years ago
  41. d735779 Fixing an improperly escaped grep in .spec file, pointed out by Neal Norwitz. by Sean Reifscheider · 18 years ago
  42. 9a24479 Add another NEWS entry for a fix already in 2.5c1 by Neal Norwitz · 18 years ago
  43. 24b6f20 Add some NEWS for fixes already in 2.5c1 by Neal Norwitz · 18 years ago
  44. 3b3aae0 Bug #1520864 (again): unpacking singleton tuples in list comprehensions and by Neal Norwitz · 18 years ago
  45. 541a48b Patch #1540470, for OpenBSD 4.0. Backport candidate for 2.[34]. by Neal Norwitz · 18 years ago
  46. 716692f Backport fix from 51683. by Neal Norwitz · 18 years ago
  47. 7ae5f29 Backport fix for SF bug #1550714, itertools.tee raises SystemError by Neal Norwitz · 18 years ago
  48. 29a5fdb Fix str.rpartition(sep) when sep is not found in str. by Neal Norwitz · 18 years ago
  49. 8dc71f2 This was found by Guido AFAIK on p3yk (sic) branch. by Neal Norwitz · 18 years ago
  50. d3da7d3 Fix SF bug #1546288, crash in dict_equal by Neal Norwitz · 18 years ago
  51. cbdd350 i_divmod(): As discussed on Python-Dev, changed the overflow by Tim Peters · 18 years ago
  52. 3467352 SF patch #1551340 ] Updated spec file for 2.5 release (c2) by Neal Norwitz · 18 years ago
  53. 08c496d NEWS entry for decimal module changes by Nick Coghlan · 18 years ago
  54. 58af7ef Patch #1545507: Exclude ctypes package in Win64 MSI file. by Martin v. Löwis · 18 years ago
  55. 19c35bb - Patch #1541585: fix buffer overrun when performing repr() on by Neal Norwitz · 18 years ago
  56. 7443b80 Backport 51432: by Neal Norwitz · 18 years ago
  57. db232dc Patch #1542948: fix urllib2 header casing issue. With new test. by Georg Brandl · 18 years ago
  58. d6f8629 SF #1542693: Remove semi-colon at end of PyImport_ImportModuleEx macro by Neal Norwitz · 18 years ago
  59. 595d9b6 Bug #1541682: Fix example in the "Refcount details" API docs. by Georg Brandl · 18 years ago
  60. 2c3a256 Bug #1541863: uuid.uuid1 failed to generate unique identifiers by Martin v. Löwis · 18 years ago
  61. 5522624 Invoke debug mk1mf.pl after running Configure. by Martin v. Löwis · 18 years ago
  62. 4c6b0d5 Fix a bug in the ``compiler`` package that caused invalid code to be by Neil Schemenauer · 18 years ago
  63. c13324e Grammar fix by Andrew M. Kuchling · 18 years ago
  64. 574cfea Add NEWS item mentioning the reverted distutils version number patch. by Marc-André Lemburg · 18 years ago
  65. b4a0cf1 Remove the special casing of Py_None when converting the return value by Thomas Heller · 18 years ago
  66. f9b5b8e Wording/typo fixes by Andrew M. Kuchling · 18 years ago
  67. b0aa98f The __repr__ method of a NULL py_object does no longer raise an by Thomas Heller · 18 years ago
  68. 5817959 news entry for 51307 by Anthony Baxter · 18 years ago
  69. a09fd6e Build _hashlib on Windows. Build OpenSSL with masm assembler code. by Martin v. Löwis · 18 years ago
  70. d112bc7 Patch #1540892: site.py Quitter() class attempts to close sys.stdin by Kurt B. Kaiser · 18 years ago
  71. b409666 preparing for 2.5c1 by Anthony Baxter · 18 years ago
  72. b476fdf Fix the test for SocketServer so it should pass on cygwin and not fail by Neal Norwitz · 18 years ago
  73. bf8c195 Georg fixed one of my bugs, so I'll repay him with 2 NEWS entries. by Neal Norwitz · 18 years ago
  74. 7a1af77 Patch #1536071: trace.py should now find the full module name of a by Georg Brandl · 18 years ago
  75. 3335a7a Patch #1535500: fix segfault in BZ2File.writelines and make sure it by Georg Brandl · 18 years ago
  76. 1ce433e News item for rev 51281. by Thomas Heller · 18 years ago
  77. 757ea27 Readd NEWS items that were accidentally removed by r51276. by Marc-André Lemburg · 18 years ago
  78. 8672004 Apply the patch #1532975 plus ideas from the patch #1533481. by Thomas Heller · 18 years ago
  79. 040f76b Slightly revised version of patch #1538956: by Marc-André Lemburg · 18 years ago
  80. 4c73177 Update purify doc some. by Neal Norwitz · 18 years ago
  81. 56423e5 Fix segfault when doing string formatting on subclasses of long if by Neal Norwitz · 18 years ago
  82. 1872b1c Fix a couple of bugs exposed by the new __index__ code. The 64-bit buildbots by Neal Norwitz · 18 years ago
  83. 8a87f5d Patch #1538606, Patch to fix __index__() clipping. by Neal Norwitz · 18 years ago
  84. 6f5ff3f Klocwork made another run and found a bunch more problems. by Neal Norwitz · 18 years ago
  85. 0a7d1bb logging's atexit hook now runs even if the rest of the module has by Georg Brandl · 18 years ago
  86. 368c155 Add Chris McDonough (latest cgi.py patch) by Georg Brandl · 18 years ago
  87. 003c9e2 Fix the failures on cygwin (2006-08-10 fixed the actual locking issue). by Neal Norwitz · 18 years ago
  88. 4643c2f Followup to bug #1069160. by Tim Peters · 18 years ago
  89. c69ac25 Fix title -- it's rc1, not beta3. by Guido van Rossum · 18 years ago
  90. 133f4e4 News item for SF bug 1112549. by Guido van Rossum · 18 years ago
  91. ab2f8f7 __hash__ may now return long int; the final hash by Martin v. Löwis · 18 years ago
  92. ab1049c memcmp() can return values other than -1, 0, and +1 but tp_compare must not. by Thomas Heller · 18 years ago
  93. 16ee33a test_threading now skips testing alternate thread stack sizes on by Andrew MacIntyre · 18 years ago
  94. 7e3ba2a Bug #1535165: fixed a segfault in input() and raw_input() when by Georg Brandl · 18 years ago
  95. 9908d16 Bug #1535182: really test the xreadlines() method of bz2 objects. by Georg Brandl · 18 years ago
  96. 212b587 Patch #1534922: correct and enhance unittest docs. by Georg Brandl · 18 years ago
  97. e6c9f98 Fix #1530559, struct.pack raises TypeError where it used to convert. by Bob Ippolito · 18 years ago
  98. db7b443 Fix #1534738: win32 debug version of _msi must be _msi_d.pyd, not _msi.pyd. by Thomas Heller · 18 years ago
  99. 1798489 Fix #1530448 - fix ctypes build failure on solaris 10. by Thomas Heller · 18 years ago
  100. 74d36f0 On Windows, make PyErr_Warn an exported function again. by Thomas Heller · 18 years ago