1. 4f51baf post release version bump by Benjamin Peterson · 15 years ago
  2. d2bdd50 tag 2.7 alpha 1 by Benjamin Peterson · 15 years ago
  3. d78cec5 bump version to 2.7a1 by Benjamin Peterson · 15 years ago
  4. 3b94c0b move RPM spec for 2.7 by Benjamin Peterson · 15 years ago
  5. c0321aa regenerate pydoc_topics by Benjamin Peterson · 15 years ago
  6. 2628590 Add missing issue number in Misc/NEWS entry. by Mark Dickinson · 15 years ago
  7. 1691025 Avoid undefined behaviour due to overflow in i_divmod (Objects/intobject.c). by Mark Dickinson · 15 years ago
  8. 820b0ea Issue 7431: use TESTFN in test_linecache instead of trying to create a by R. David Murray · 15 years ago
  9. 6420172 Add Christoph Gohlke, for the issue 4120 work. by Martin v. Löwis · 15 years ago
  10. c218a2f Issue #4120: Drop reference to CRT from manifest when building by Martin v. Löwis · 15 years ago
  11. 3dc2541 Issue #6985: number of range() items should be constrained to lie by Mark Dickinson · 15 years ago
  12. 91c12eb disable pymalloc tricks with the --with-valgrind option #2422 by Benjamin Peterson · 15 years ago
  13. 0299d0d actually close files by Philip Jenvey · 15 years ago
  14. 2627553 #7177: clarify the potential PIPE deadlock warnings by Philip Jenvey · 15 years ago
  15. 30b3b35 Issue #7333: The `posix` module gains an `initgroups()` function providing by Antoine Pitrou · 15 years ago
  16. f2bf0d2 Issue #4482: Add tests for special float value formatting. by Eric Smith · 15 years ago
  17. 3439818 Issue #7406: Fix some occurrences of potential signed overflow in int by Mark Dickinson · 15 years ago
  18. 5a73ff8 Markup fixes by Andrew M. Kuchling · 15 years ago
  19. d728871 #7419: Fix a crash on Windows in locale.setlocale() when the category by Amaury Forgeot d'Arc · 15 years ago
  20. 7072f74 Fix for issue #7416: SIZEOF_UINTPTR_T can be invalid when configuring a by Ronald Oussoren · 15 years ago
  21. 117a899 Add dtoa.c and dtoa.h to the relevant project files. by Mark Dickinson · 15 years ago
  22. 2ef9e8c Update project file for new file: dtoa.c by Raymond Hettinger · 15 years ago
  23. 9b4197b Handle step values other than one. by Raymond Hettinger · 15 years ago
  24. e09f45a Issue 7410: deepcopy of itertools.count resets the count by Raymond Hettinger · 15 years ago
  25. d46430b now that deepcopy can handle instance methods, this hack can be removed #7409 by Benjamin Peterson · 15 years ago
  26. a5076a2 Fixed #7408: dropped group ownership checking because it relies on os-specific rules by Tarek Ziadé · 15 years ago
  27. 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 · 15 years ago
  28. ccc690d Issue #1678380: When distinguishing between -0.0 and 0.0 in by Mark Dickinson · 15 years ago
  29. d16f57b Issue #1515: Enable use of deepcopy() with instance methods. Patch by Robert Collins. by Antoine Pitrou · 15 years ago
  30. c63392c Multiprocessing configure checks don't need LIBM by Mark Dickinson · 15 years ago
  31. 31f0cfe Include ieeefp.h (when available) in pyport.h instead of individually in by Mark Dickinson · 15 years ago
  32. 8d8f874 Fix versions and spacing. by Georg Brandl · 15 years ago
  33. 5afa6d4 Issue #7272, continued: don't re-use existing HAVE_BROKEN_POSIX_SEMAPHORES by Mark Dickinson · 15 years ago
  34. 761ae0b fix typo by Gregory P. Smith · 15 years ago
  35. 01801d1 Issue #7403: Fixed possible race condition in lock creation. by Vinay Sajip · 15 years ago
  36. 50ea456 Issue #6508: Add posix.{getresuid,getresgid,setresuid,setresgid}. by Martin v. Löwis · 15 years ago
  37. bf4a5fc Add ACKS entry for Pablo Mouzo by Antoine Pitrou · 15 years ago
  38. acbe3bd Issue #6845: Add restart support for binary upload in ftplib. The by Antoine Pitrou · 15 years ago
  39. 2600a33 #7400: typo. by Georg Brandl · 15 years ago
  40. 2dab865 When open_urlresource() fails, HTTPException is another possible error by Antoine Pitrou · 15 years ago
  41. 0306894 Fix typo. by Martin v. Löwis · 15 years ago
  42. e236c3c Forgot to add a `versionadded` tag by Antoine Pitrou · 15 years ago
  43. bcfaf80 Issue #5788: `datetime.timedelta` objects get a new `total_seconds()` method returning by Antoine Pitrou · 15 years ago
  44. 0d9f61a Add mktime_tz to __all__. It's documented as being available in email.utils. by Barry Warsaw · 15 years ago
  45. 42d26d9 Merged revisions 76160-76161,76250,76252,76447,76506 via svnmerge from by Benjamin Peterson · 15 years ago
  46. 2ed8813 logging: Issue 6615: Changed handler prepend to append. by Vinay Sajip · 15 years ago
  47. 17e94e0 logging: made _handlers a WeakValueDictionary. by Vinay Sajip · 15 years ago
  48. c470d68 Issue #6615: logging: Used weak references in internal handler list. Thanks to flox (Florent Xicluna) for the patch. by Vinay Sajip · 15 years ago
  49. 889d9645 Issue #7228: Fix format mismatch when printing something of type off_t. by Mark Dickinson · 15 years ago
  50. 8b2d713 Issue 7128: Removed reference to the non-existent copyreg module. by Alexandre Vassalotti · 15 years ago
  51. 1d2c16d Made logging classes new-style and added name property to handlers. by Vinay Sajip · 15 years ago
  52. 3e53549 Issue #7117: Update float formatting testcases to match those in py3k. by Mark Dickinson · 15 years ago
  53. 6b87f11 Fix some documentation examples involving the repr of a float. by Mark Dickinson · 15 years ago
  54. 9a03f2f comment out test added in r76438, which caused refleaks by Jesse Noller · 15 years ago
  55. bce7837 round(0, "ermintrude") succeeded instead of producing a TypeError. Fix this. by Mark Dickinson · 15 years ago
  56. 9dd5e16 Issue #7117, continued: Remove substitution of %g-style formatting for by Mark Dickinson · 15 years ago
  57. faa2599 #7345: fix arguments of formatyear(). by Georg Brandl · 15 years ago
  58. 18cfada Remove restriction on precision when formatting floats. This is the by Mark Dickinson · 15 years ago
  59. 5c456e6 Fix for issue1488943 - difflib.Differ() doesn't always add hints for tab by Senthil Kumaran · 15 years ago
  60. f058d2d Issue #7369: Fibonacci series should start at 0 in tutorial example. by Mark Dickinson · 15 years ago
  61. e13dc3e Issue #7379: Fix incorrect doctest for Fraction.limit_denominator. by Mark Dickinson · 15 years ago
  62. 12adc65 Add a testcase that checks if the TarFile constructor successfully by Lars Gustäbel · 15 years ago
  63. dd866d5 Issue #6123: Fix opening empty archives and files. by Lars Gustäbel · 15 years ago
  64. 814d02d issue6615: Additional test for logging support in multiprocessing by Jesse Noller · 15 years ago
  65. 7bdd8d9 revert unintended change to multiprocessing/queues.py by Jesse Noller · 15 years ago
  66. 6c37674 issue5738: The distribution example was confusing, and out of date. It's too large to include inline in the docs as well. It belongs in an addons module outside the stdlib. Removing. by Jesse Noller · 15 years ago
  67. c4920e8 Issue #7272: Add configure test to detect whether sem_open works by Mark Dickinson · 15 years ago
  68. ab44226 Regenerate configure with GNU autoconf 2.61. by Mark Dickinson · 15 years ago
  69. 4823961 Issue 7363: fix indentation in socketserver udpserver example. by R. David Murray · 15 years ago
  70. 246ec33 avoid doing an uneeded import in a function by Benjamin Peterson · 15 years ago
  71. cef9782 turn goto into do while loop by Benjamin Peterson · 15 years ago
  72. 009b89d genexps have linenos by Benjamin Peterson · 15 years ago
  73. d16d0ab provide line number for lambdas by Benjamin Peterson · 15 years ago
  74. 48f0a8d spelling by Benjamin Peterson · 15 years ago
  75. 89b1a5c add news notes for r76416 by Benjamin Peterson · 15 years ago
  76. 99a5023 improve several corner cases related with argument names in parenthesis by Benjamin Peterson · 15 years ago
  77. b678de8 Misc/NEWS entries for issue 7117. by Mark Dickinson · 15 years ago
  78. 3934619 Don't use the '==' operator with test, that's an unportable bash-ism. by Ronald Oussoren · 15 years ago
  79. 315cd0c Fix for issue #7085 by Ronald Oussoren · 15 years ago
  80. 39de1fc dragfullwindows can have value 2 by Tarek Ziadé · 15 years ago
  81. dc3c239 #5037 proxy __unicode__ correctly by Benjamin Peterson · 15 years ago
  82. 9eac119 Fix docstrings for itertools combinatoric functions. by Raymond Hettinger · 15 years ago
  83. 79628d3 Issue 7263: Fix set.intersection() docstring. by Raymond Hettinger · 15 years ago
  84. 355538e Issue #7341: Close the internal file object in the TarFile by Lars Gustäbel · 15 years ago
  85. c029942 Mention Giampolo R's new FTP TLS support in the what's new file by Antoine Pitrou · 15 years ago
  86. 845688d Enable short float repr! by Mark Dickinson · 15 years ago
  87. 1136ff5 Fix markup. by Georg Brandl · 15 years ago
  88. 8c18a47 upcase Python by Georg Brandl · 15 years ago
  89. bd15a06 Issue #7117, continued: Change round implementation to use the correctly-rounded by Mark Dickinson · 15 years ago
  90. 0516f81 Make separate section for deprecations in 2.7 whatsnew. by Georg Brandl · 15 years ago
  91. a17f602 Make separate section for deprecations in 2.6 whatsnew. by Georg Brandl · 15 years ago
  92. 815521f Correctly escape arbitrary error message text in the runpy unit tests by Nick Coghlan · 15 years ago
  93. acccafc #7293: distutils.test_msvc9compiler now uses a key that exists on any fresh windows install by Tarek Ziadé · 15 years ago
  94. 90ed611 a better callable replacement by Benjamin Peterson · 15 years ago
  95. fab8be2 #1757126: fix typo with the cyrillic_asian alias by Philip Jenvey · 15 years ago
  96. 3d6790e Silence another MSVC warning about unary minus. by Mark Dickinson · 15 years ago
  97. b2c3ca1 Silence MSVC warning about unary minus applied to unsigned type. by Mark Dickinson · 15 years ago
  98. d3571c8 #7302: fix link. by Georg Brandl · 15 years ago
  99. 4b953ba Allow for backslashes in file paths passed to the regex engine by Nick Coghlan · 15 years ago
  100. 4976e32 Account for another cache when hunting ref leaks by Nick Coghlan · 15 years ago