1. 8e8e56c Needs only 2.4 now. by Georg Brandl · 16 years ago
  2. 95d6447 Issue #1706: Require Windows 2000+ by Christian Heimes · 16 years ago
  3. 97fac3e Issue 2021: Allow NamedTemporaryFile and SpooledTemporaryFile to be used as context managers. (The NamedTemporaryFile fix should be considered for backporting to 2.5) by Nick Coghlan · 16 years ago
  4. 8c6c12c Temporarily disable this test. It's been broken for a week. by Raymond Hettinger · 16 years ago
  5. 2cd9bf5 Metaclass declaration is inherited by Raymond Hettinger · 16 years ago
  6. 17a74c3 Add -3 warnings that set.copy(), dict.copy(), and defaultdict.copy() will go away in Py3.x by Raymond Hettinger · 16 years ago
  7. 2e827bf Merge with r60683. by Raymond Hettinger · 16 years ago
  8. c2bc0d1 Make ABC containers inherit as documented. by Raymond Hettinger · 16 years ago
  9. 7e33663 Add advice on choosing between DictMixin and MutableMapping by Raymond Hettinger · 16 years ago
  10. d53f1c4 Fill-in missing Set comparisons by Raymond Hettinger · 16 years ago
  11. 18a1ffc Speed-up __iter__() mixin method. by Raymond Hettinger · 16 years ago
  12. 0913166 Remove unnecessary modulo division. by Raymond Hettinger · 16 years ago
  13. 01612e7 Update big5hkscs codec to conform to the HKSCS:2004 revision. by Hye-Shik Chang · 16 years ago
  14. 27d3394 Oops! 2.6's Rational.__ne__ didn't work. by Jeffrey Yasskin · 16 years ago
  15. b01aa43 issue 2045: Infinite recursion when printing a subclass of defaultdict, by Amaury Forgeot d'Arc · 16 years ago
  16. 48397d6 Use prefix decrement by Christian Heimes · 16 years ago
  17. f75dbef Deallocate content of the dict free list on interpreter shutdown by Christian Heimes · 16 years ago
  18. 8352585 Make sure a switch statement does not have repetitive case statements. by Brett Cannon · 16 years ago
  19. 23bdcc9 Fix typo by Raymond Hettinger · 16 years ago
  20. ff1f973 The float conversion recipe is simpler in Py2.6 by Raymond Hettinger · 16 years ago
  21. d0e5b76 Fix typo in docstring for Calendar.itermonthdays(). by Walter Dörwald · 16 years ago
  22. a53800e Fix documentation for Calendar.iterweekdays(): firstweekday is a property. by Walter Dörwald · 16 years ago
  23. 97bf449 Clarify that the output of TextCalendar.formatmonth() and by Walter Dörwald · 16 years ago
  24. 86371d6 Fixes Issue 1401. When redirected, a possible POST get converted by Facundo Batista · 16 years ago
  25. b4ee4a1 Added some statistics code to dict and list object code. I wanted to test how a larger freelist affects the reusage of freed objects. Contrary to my gut feelings 80 objects is more than fine for small apps. I haven't profiled a large app yet. by Christian Heimes · 16 years ago
  26. 9521f08 Fixes issue 2026. Tests converted to unittest. Thanks Giampaolo Rodola. by Facundo Batista · 16 years ago
  27. 8d11930 Update URL by Andrew M. Kuchling · 17 years ago
  28. 687af0d Remove unnecessary curly braces around an int literal. by Brett Cannon · 17 years ago
  29. a6c41bc Cast a struct to a void pointer so as to do a type-safe pointer comparison by Brett Cannon · 17 years ago
  30. 882a416 Merge r60628, r60631, and r60633. Register UserList and UserString will the appropriate ABCs. by Raymond Hettinger · 17 years ago
  31. 017b6a3 Merge 60627. by Raymond Hettinger · 17 years ago
  32. 55285ef Return ints instead of longs for tuple.count() and tuple.index(). by Raymond Hettinger · 17 years ago
  33. 00c2e65 IEEE 754 should be IEEE 854; give precise reference for by Mark Dickinson · 17 years ago
  34. ff6672f Fix broken link in decimal documentation. by Mark Dickinson · 17 years ago
  35. 5b07ebc Issue 2025: Add tuple.count() and tuple.index() to follow the ABC in collections.Sequence. by Raymond Hettinger · 17 years ago
  36. 3c3d9ac Revert accidental changes to test_queue in r60605. by Georg Brandl · 17 years ago
  37. bafa942 Remove incorrect usage of :const: in documentation. by Mark Dickinson · 17 years ago
  38. 2fc9263 Issue 1979: Make Decimal comparisons (other than !=, ==) involving NaN by Mark Dickinson · 17 years ago
  39. 55b8c3e Fixed refcounts and error handling. by Thomas Heller · 17 years ago
  40. 5af2f74 Fixes issue 1959. Converted tests to unittest. Thanks Giampaolo Rodola. by Facundo Batista · 17 years ago
  41. c16c57c Remove month parameter from Calendar.yeardatescalendar(), by Walter Dörwald · 17 years ago
  42. 5b970ad Unified naming convention for free lists and their limits. All free lists by Christian Heimes · 17 years ago
  43. 6075a82 Limit free list of method and builtin function objects to 256 entries each. by Christian Heimes · 17 years ago
  44. 45eda64 Sync-up with Py3k work. by Raymond Hettinger · 17 years ago
  45. b709077 * Use the same code to profile for test_profile and test_cprofile. by Georg Brandl · 17 years ago
  46. 3c0f309 correct object name by Skip Montanaro · 17 years ago
  47. d86c7e5 Actually run the test. by Georg Brandl · 17 years ago
  48. c2879c7 Issue 1951. Converts wave test cases to unittest. by Facundo Batista · 17 years ago
  49. 8ada177 Fix unittest conversion breakage. by Georg Brandl · 17 years ago
  50. 212861c In the experimental 'Scanner' feature, the group count was set wrong. by Guido van Rossum · 17 years ago
  51. 727a590 Update PEP URL. by Andrew M. Kuchling · 17 years ago
  52. 2db7cd3 Keep distutils Python 2.1 compatible (or even Python 2.4 in this case). by Marc-André Lemburg · 17 years ago
  53. 1cf0522 Convert external links to internal links. Fixes #2010. by Georg Brandl · 17 years ago
  54. 0192e43 Issue #2004: Use mode 0700 for temporary directories and default by Lars Gustäbel · 17 years ago
  55. dc6d9e1 sync with most recent version from python-mode sf project by Skip Montanaro · 17 years ago
  56. 99af7db Change r60575 broke test_compile: by Amaury Forgeot d'Arc · 17 years ago
  57. 6fd03bb #1750076: Debugger did not step on every iteration of a while statement. by Amaury Forgeot d'Arc · 17 years ago
  58. 578a8ca Correct quotes in NEWS file by Amaury Forgeot d'Arc · 17 years ago
  59. f5806ab Small adjustments for test compact freelist test. It's no passing on Windows as well. by Christian Heimes · 17 years ago
  60. f4033ab Increase debugging to investige failing tests on some build bots by Christian Heimes · 17 years ago
  61. 422051a Patch #1953 by Christian Heimes · 17 years ago
  62. a26cf9b Make int() and long() fall back to __trunc__(). See issue 2002. by Jeffrey Yasskin · 17 years ago
  63. 72a6576 Let test_socketserver pass on win32, which does not have AF_UNIX sockets. by Amaury Forgeot d'Arc · 17 years ago
  64. 07974d7 Correct test_mailbox on win32: since the test sets a custom 'colon' attribute by Amaury Forgeot d'Arc · 17 years ago
  65. 58e185a Nasty typo in setobject.h by Amaury Forgeot d'Arc · 17 years ago
  66. cab3d98 Ensure that PySet_Add() operates on a newly created frozenset, like PyTuple_SetItem does. by Amaury Forgeot d'Arc · 17 years ago
  67. e6a8074 Another int -> pid_t case by Christian Heimes · 17 years ago
  68. c4b7d4e Ignore leaky warnings from test_asynchat by Neal Norwitz · 17 years ago
  69. 3af3ecc Fixed paths to Windows build directories in build_ext.py by Christian Heimes · 17 years ago
  70. 63cdb86 #2003: fix sentence. by Georg Brandl · 17 years ago
  71. 70c0c02 Add an entry for r60537. by Brett Cannon · 17 years ago
  72. 773f347 remove a repeated occurance of a hardcoded berkeleydb library version number by Gregory P. Smith · 17 years ago
  73. eeed5b7 Merge this fix from the pybsddb tree: by Gregory P. Smith · 17 years ago
  74. 94dcf0d The wrapper function is supposed to be for spawnvpe() so that's by Andrew MacIntyre · 17 years ago
  75. 52895fc Rename module definition file to reflect v2.6. by Andrew MacIntyre · 17 years ago
  76. e6d9010 Update OS/2 EMX build bits for 2.6. by Andrew MacIntyre · 17 years ago
  77. 4b7deed Use context manager for a lock. by Brett Cannon · 17 years ago
  78. 89dfbe3 Remove extra tick marks and add a missing closing parenthesis. by Brett Cannon · 17 years ago
  79. 861e396 Directories from CPPFLAGS and LDFLAGS were being added in the reverse order for by Brett Cannon · 17 years ago
  80. 9a8bb0e Fix a minor typo. by Brett Cannon · 17 years ago
  81. 461ed87 Wait for a delay before reaping children -- this should fix the by Georg Brandl · 17 years ago
  82. cafb710 Fix a conversion mistake that caused test_queue to fail intermittently. by Georg Brandl · 17 years ago
  83. ee29c3f Split the refleak mail body into two parts, the first being those failing by Skip Montanaro · 17 years ago
  84. 332ec6c Update the leaky tests (ie, ignore these tests if they report leaks). This version has been running for a while. by Neal Norwitz · 17 years ago
  85. 1dabdb2 Make the Rational constructor accept '3.' and '.2' as well as '3.2'. by Mark Dickinson · 17 years ago
  86. 5a6cfee Rewrite test_cprofile as unittest (and rename the file to be consistent by Georg Brandl · 17 years ago
  87. d22b466 Rewrite test_queue as unittest. Written for GHOP by Ian Seyer. by Georg Brandl · 17 years ago
  88. 593b77c Add GHOP contributor. by Georg Brandl · 17 years ago
  89. 61fdd71 Rewrite test_socketserver as unittest, written for GHOP by Benjamin Petersen. by Georg Brandl · 17 years ago
  90. bbc4fc2 Add email example how to send a multipart message. by Georg Brandl · 17 years ago
  91. c8088df Rewrite test_funcattrs as unittest, written for GHOP by Jeff Wheeler. by Georg Brandl · 17 years ago
  92. 4854552 Rewrite test_descr as unittest, written for GHOP by Jeff Wheeler. by Georg Brandl · 17 years ago
  93. 586a57a Amendments to the urllib2 docs, written for GHOP by Thomas Lamb. by Georg Brandl · 17 years ago
  94. fe424f7 Neaten-up a bit. by Raymond Hettinger · 17 years ago
  95. 2d1aa33 Simpler solution to handling non-IEEE 754 environments. by Raymond Hettinger · 17 years ago
  96. f985903 Add protection from weirdness while scaling the mantissa to an integer. by Raymond Hettinger · 17 years ago
  97. 1bcb99a Fix int/long typecase. Add check for non-binary floating point. by Raymond Hettinger · 17 years ago
  98. 1aa8a69 Bump distutils version number to match Python version. by Marc-André Lemburg · 17 years ago
  99. 4cab8ec Test round-trip on float.as_integer_ratio() and float.__truediv__(). by Raymond Hettinger · 17 years ago
  100. ffc667c labs() takes a long for an input. by Raymond Hettinger · 17 years ago