1. 99d652e Issue #7534: Fix handling of nans, infinities, and negative zero in ** by Mark Dickinson · 16 years ago
  2. 569e61f #5511: Added the ability to use ZipFile as a context manager. Patch by Brian Curtin. by Ezio Melotti · 16 years ago
  3. 8645a5c #7413: Passing '\0' as the separator to datetime.datetime.isoformat() by Amaury Forgeot d'Arc · 16 years ago
  4. 8e3e1d6 Issue #7575: An overflow test for math.expm1 was failing on OS X 10.4/Intel, by Mark Dickinson · 16 years ago
  5. b598393 enable test_main.py by Benjamin Peterson · 16 years ago
  6. abb4274 Merged revisions 76871-76872,77093-77095,77097-77101 via svnmerge from by Benjamin Peterson · 16 years ago
  7. 740cdc3 #7033: add new API function PyErr_NewExceptionWithDoc, for easily giving new exceptions a docstring. by Georg Brandl · 16 years ago
  8. 02e7dfd #7381: consistency update, and backport avoiding ``None >= 0`` check from py3k. by Georg Brandl · 16 years ago
  9. e079636 Use a more idiomatic check in check_truediv. by Mark Dickinson · 16 years ago
  10. 4c96035 Use ldexp(q, exp) instead of q*2.**exp in true division test, to avoid bogus failures on platforms with broken pow (e.g., Ubuntu/ia64). by Mark Dickinson · 16 years ago
  11. 4657283 Issue #1811: Improve accuracy and consistency of true division for integers. by Mark Dickinson · 16 years ago
  12. 13c2ef9 Fix for issue5625 - test_urllib2 fails - urlopen error file not on local host. by Senthil Kumaran · 16 years ago
  13. f84caf4 #6108: unicode(exception) and str(exception) should return the same message by Ezio Melotti · 16 years ago
  14. db69f01 Issue #7568: typo in docstring. Thanks Mike Putnam. by Mark Dickinson · 16 years ago
  15. 27cae34 allow Process name to be unicode #7571 by Benjamin Peterson · 16 years ago
  16. ca8e7ec Unittests and news items for the patch in r77026. by Ronald Oussoren · 16 years ago
  17. 92919a6 Issue #6834: replace the implementation for the 'python' and 'pythonw' executables on OSX. by Ronald Oussoren · 16 years ago
  18. 728cc61 On OSX the output of "uname -m" always reflects the 32-bit architecture by Ronald Oussoren · 16 years ago
  19. 3293593 fix alleged refleak by Benjamin Peterson · 16 years ago
  20. 9f12d46 Fix possible integer overflow in lchown and fchown functions. For issue1747858. by Gregory P. Smith · 16 years ago
  21. 3efd767 backported r76993 and r76994 so the trunk behaves the same way with MSVC Manifest files editing by Tarek Ziadé · 16 years ago
  22. 2ba1e9c Issue #7553: test_long_future wasn't testing properly. Thanks Florent Xicluna by Mark Dickinson · 16 years ago
  23. 08dca0d Remove a leftover from a previous iteration of the issue 7376 patch. by R. David Murray · 16 years ago
  24. 2b66da7 massive import cleaning in Distutils by Tarek Ziadé · 16 years ago
  25. 2421d56 Fixed #7552: fixed distutils.command.upload failure on very long passwords by Tarek Ziadé · 16 years ago
  26. 603ae9e Issue #7554: Various fixups in test_cmath.py: remove code duplication, by Mark Dickinson · 16 years ago
  27. ed28499 Silence -3 warnings. Thanks Florent Xicluna. by Mark Dickinson · 16 years ago
  28. 3e0bafe Fix for consistency with py3k keyword-only version of assertAlmostEqual by Mark Dickinson · 16 years ago
  29. 1d2ae21 Issue #7554: Fix incorrect usage of rAssertAlmostEqual. Thanks Florent Xicluna. by Mark Dickinson · 16 years ago
  30. 77e48ba Issue #7376: When called with no arguments doctest was running a by R. David Murray · 16 years ago
  31. 9713811 Fix comment typo. by R. David Murray · 16 years ago
  32. b5e348b Add missing tests for PyArg_Parse* with format 'h' by Mark Dickinson · 16 years ago
  33. 6ab5d08 #7381: subprocess documentation and library docstring consistency fixes. by Georg Brandl · 16 years ago
  34. 7713acf Fix for issue 7291 - urllib2 cannot handle https with proxy requiring auth by Senthil Kumaran · 16 years ago
  35. 98a24de Remove superfetatory paragraph (left there by mistake). by Antoine Pitrou · 16 years ago
  36. e812d29 Issue #7545: improve documentation of the `buffering` argument in io.open(). by Antoine Pitrou · 16 years ago
  37. 5ff37ae Issue #3366: Add error function and complementary error function to math module. by Mark Dickinson · 16 years ago
  38. 9cae178 Issue #3366: Add expm1 function to math module. Thanks Eric Smith for by Mark Dickinson · 16 years ago
  39. 98e3df3 Issue #7396: fix -s, which was broken by the -j enhancement. by R. David Murray · 16 years ago
  40. 3690298 remove lib2to3 resource by Benjamin Peterson · 16 years ago
  41. c0680e2 cleaned up the module (PEP 8 + old fashion test removal) by Tarek Ziadé · 16 years ago
  42. c7298ff Issue #7498: make test_multiprocessing use test_support.find_unused_port by R. David Murray · 16 years ago
  43. 0a0a1a8 Issue #1680159: unicode coercion during an 'in' operation was masking by R. David Murray · 16 years ago
  44. ddd392c accept None as the same as having passed no argument in file types #7349 by Benjamin Peterson · 16 years ago
  45. e304852 #7342: make sure that the datetime object in test_fraction always has a number of microseconds != 0 by Ezio Melotti · 16 years ago
  46. 4147216 make StringIO like other file objects in that readline(-1) has no effect #7348 by Benjamin Peterson · 16 years ago
  47. 4895af4 fix the ignoring of __cmp__ method on metaclasses #7491 by Benjamin Peterson · 16 years ago
  48. 92ca756 Issue #7357: No longer suppress fatal extraction errors by default. by Lars Gustäbel · 16 years ago
  49. c169c78 Issue #7466: segmentation fault when the garbage collector is called by Antoine Pitrou · 16 years ago
  50. 9be87bc Issue #3366: Add lgamma function to math module. by Mark Dickinson · 16 years ago
  51. 5cc4e2a Issue #7470: logging: fix bug in Unicode encoding fallback. by Vinay Sajip · 16 years ago
  52. 6c4847f using an existing file to avoid dealing with a sleep to test file ages by Tarek Ziadé · 16 years ago
  53. 1bd9b5e added test coverage for distutils.dep_util, and cleaned up the module by Tarek Ziadé · 16 years ago
  54. 9fa9a0d Fix an issue with the detection of a non-existing SDK by Ronald Oussoren · 16 years ago
  55. a5fd24e Add a reverse() method to collections.deque(). by Raymond Hettinger · 16 years ago
  56. 0b3263b Fix variants of deque.extend: d.extend(d) d+=d d.extendleft(d) by Raymond Hettinger · 16 years ago
  57. d4e31a4 Skip new imaplib SSL tests if ssl is not available. by R. David Murray · 16 years ago
  58. 93321f3 Issue 5949: fixed IMAP4_SSL hang when the IMAP server response is by R. David Murray · 16 years ago
  59. 29dcdab Make test_pipes a little bit more robust. by Antoine Pitrou · 16 years ago
  60. ca173e2 Fix transient refleaks in test_urllib. Thanks to Florent Xicluna. by Antoine Pitrou · 16 years ago
  61. 8c54e78 Fix the transient refleaks in test_zipimport_support. by Antoine Pitrou · 16 years ago
  62. 187177f Issue #6986: Fix crash in the JSON C accelerator when called with the by Antoine Pitrou · 16 years ago
  63. 4b7f943 removed the usage of rfc822 in favor of email.message.Message by Tarek Ziadé · 16 years ago
  64. a939ecd Issue #7457: added a read_pkg_file method to distutils.dist.DistributionMetadata so we can read back PKG-INFO files by Tarek Ziadé · 16 years ago
  65. a4a04d1 fix test_parser from tokenizer tweak by Benjamin Peterson · 16 years ago
  66. bd1094a logging: Improved support for SMTP over TLS. by Vinay Sajip · 16 years ago
  67. 4830566 logging: Added optional 'secure' parameter to SMTPHandler. by Vinay Sajip · 16 years ago
  68. 4f38317 Fixed #1923: make sure we don't strip meaningful whitespace in PKG-INFO Description field by Tarek Ziadé · 16 years ago
  69. d78cec5 bump version to 2.7a1 by Benjamin Peterson · 16 years ago
  70. c0321aa regenerate pydoc_topics by Benjamin Peterson · 16 years ago
  71. 820b0ea Issue 7431: use TESTFN in test_linecache instead of trying to create a by R. David Murray · 16 years ago
  72. c218a2f Issue #4120: Drop reference to CRT from manifest when building by Martin v. Löwis · 16 years ago
  73. 0299d0d actually close files by Philip Jenvey · 16 years ago
  74. 30b3b35 Issue #7333: The `posix` module gains an `initgroups()` function providing by Antoine Pitrou · 16 years ago
  75. f2bf0d2 Issue #4482: Add tests for special float value formatting. by Eric Smith · 16 years ago
  76. d728871 #7419: Fix a crash on Windows in locale.setlocale() when the category by Amaury Forgeot d'Arc · 16 years ago
  77. e09f45a Issue 7410: deepcopy of itertools.count resets the count by Raymond Hettinger · 16 years ago
  78. d46430b now that deepcopy can handle instance methods, this hack can be removed #7409 by Benjamin Peterson · 16 years ago
  79. a5076a2 Fixed #7408: dropped group ownership checking because it relies on os-specific rules by Tarek Ziadé · 16 years ago
  80. c4ab833 Issue #3382: Make '%F' and float.__format__('F') convert results to upper case. Much of the patch came from Mark Dickinson. by Eric Smith · 16 years ago
  81. d16f57b Issue #1515: Enable use of deepcopy() with instance methods. Patch by Robert Collins. by Antoine Pitrou · 16 years ago
  82. 01801d1 Issue #7403: Fixed possible race condition in lock creation. by Vinay Sajip · 16 years ago
  83. 50ea456 Issue #6508: Add posix.{getresuid,getresgid,setresuid,setresgid}. by Martin v. Löwis · 16 years ago
  84. acbe3bd Issue #6845: Add restart support for binary upload in ftplib. The by Antoine Pitrou · 16 years ago
  85. 2dab865 When open_urlresource() fails, HTTPException is another possible error by Antoine Pitrou · 16 years ago
  86. bcfaf80 Issue #5788: `datetime.timedelta` objects get a new `total_seconds()` method returning by Antoine Pitrou · 16 years ago
  87. 0d9f61a Add mktime_tz to __all__. It's documented as being available in email.utils. by Barry Warsaw · 16 years ago
  88. 42d26d9 Merged revisions 76160-76161,76250,76252,76447,76506 via svnmerge from by Benjamin Peterson · 16 years ago
  89. 2ed8813 logging: Issue 6615: Changed handler prepend to append. by Vinay Sajip · 16 years ago
  90. 17e94e0 logging: made _handlers a WeakValueDictionary. by Vinay Sajip · 16 years ago
  91. c470d68 Issue #6615: logging: Used weak references in internal handler list. Thanks to flox (Florent Xicluna) for the patch. by Vinay Sajip · 16 years ago
  92. 8b2d713 Issue 7128: Removed reference to the non-existent copyreg module. by Alexandre Vassalotti · 16 years ago
  93. 1d2c16d Made logging classes new-style and added name property to handlers. by Vinay Sajip · 16 years ago
  94. 3e53549 Issue #7117: Update float formatting testcases to match those in py3k. by Mark Dickinson · 16 years ago
  95. 9a03f2f comment out test added in r76438, which caused refleaks by Jesse Noller · 16 years ago
  96. bce7837 round(0, "ermintrude") succeeded instead of producing a TypeError. Fix this. by Mark Dickinson · 16 years ago
  97. 9dd5e16 Issue #7117, continued: Remove substitution of %g-style formatting for by Mark Dickinson · 16 years ago
  98. 18cfada Remove restriction on precision when formatting floats. This is the by Mark Dickinson · 16 years ago
  99. 5c456e6 Fix for issue1488943 - difflib.Differ() doesn't always add hints for tab by Senthil Kumaran · 16 years ago
  100. e13dc3e Issue #7379: Fix incorrect doctest for Fraction.limit_denominator. by Mark Dickinson · 16 years ago