1. 6736cf8 Issue #3166: Make long -> float (and int -> float) conversions by Mark Dickinson · 15 years ago
  2. 31559b6 adding a NEWS note for #5795 (previously checked via the buildbot) by Tarek Ziadé · 15 years ago
  3. d4d400c try to initalize all builtin types with PyType_Ready to avoid problems like #5787 by Benjamin Peterson · 15 years ago
  4. 1bdf7e9 Issue #1869: Fix a couple of minor round() issues. by Mark Dickinson · 15 years ago
  5. 22aa4bb Issue #5768: Change to Unicode output logic and test case for same. by Vinay Sajip · 15 years ago
  6. 99d36f1 call __float__ on str subclasses #5759 by Benjamin Peterson · 15 years ago
  7. abc2660 Add missing NEWS item for issue1161031 fix. by R. David Murray · 15 years ago
  8. 156c31a Fixed #5607: Distutils test_get_platform was failing fo Mac OS X fat binaries. by Tarek Ziadé · 15 years ago
  9. 21cf5ee #5741: dont disallow double percent signs in SafeConfigParser.set() keys. by Georg Brandl · 15 years ago
  10. 3c4a546 #5704: let python -3 imply -t as well. by Georg Brandl · 15 years ago
  11. 942825f #5732: added the check command into Distutils by Tarek Ziadé · 15 years ago
  12. 0374a82 Issue #2170: refactored xml.dom.minidom.normalize, increasing both by R. David Murray · 15 years ago
  13. ad95826 Fixed #5731: Distutils bdist_wininst no longer worked on non-Windows platforms by Tarek Ziadé · 15 years ago
  14. 5963185 Typo fixes by Andrew M. Kuchling · 15 years ago
  15. ee42545 see if this helps the doc builds by Benjamin Peterson · 15 years ago
  16. 923ba36 - Issue #2254: Fix CGIHTTPServer information disclosure. Relative paths are by Gregory P. Smith · 15 years ago
  17. 2b3eb37 news entry for r71299. by Gregory P. Smith · 15 years ago
  18. 64408fb Fixed #5095: msi missing from Distutils bdist formats by Tarek Ziadé · 15 years ago
  19. faa6b12 Fixed #1491431: distutils.filelist.glob_to_re was broken for some edge cases (detailed in the test by Tarek Ziadé · 15 years ago
  20. 91a3b9e Issue #1113244: Py_XINCREF, Py_DECREF, Py_XDECREF: Add `do { ... } while (0)' by Matthias Klose · 15 years ago
  21. a5d58c8 - Issue #2703: SimpleXMLRPCDispatcher.__init__: Provide default values for by Matthias Klose · 15 years ago
  22. 29c6a28 Normalize issue referencing style. by Georg Brandl · 15 years ago
  23. f2dfef1 Adding assertIs and assertIsNot methods to unittest.TestCase by Michael Foord · 15 years ago
  24. 453d953 Fixed 5694: removed spurious test output in Distutils by Tarek Ziadé · 15 years ago
  25. 3f0ef20 #5471: fix expanduser() for $HOME set to "/". by Georg Brandl · 15 years ago
  26. 1956d5c Add NEWS entry for r71237. by Georg Brandl · 15 years ago
  27. 0610e08 - Py_DECREF: Add `do { ... } while (0)' to avoid compiler warnings. by Matthias Klose · 15 years ago
  28. 50ba6e1 #1726172: dont raise an unexpected IndexError if a voidresp() call has an empty response. by Georg Brandl · 15 years ago
  29. ea0d744 revert r71159 since it broke the build by Benjamin Peterson · 15 years ago
  30. 8212a82 - Py_DECREF: Add `do { ... } while (0)' to avoid compiler warnings. by Matthias Klose · 15 years ago
  31. edb5e1e - Issue #3845: In PyRun_SimpleFileExFlags avoid invalid memory access with by Matthias Klose · 15 years ago
  32. 789be0c Issue #2396: backport the memoryview object. by Antoine Pitrou · 15 years ago
  33. d3f03fa PyErr_NormalizeException may not set an error, so convert the PyErr_SetObject by Georg Brandl · 15 years ago
  34. 52720c5 Add missing iteritems() call to the for loop in mailbox.MH.get_message(). by R. David Murray · 15 years ago
  35. 7152f6d Add custom initializer argument to multiprocess.Manager*, courtesy of lekma by Jesse Noller · 15 years ago
  36. 5053fbb Issue 3551: Raise ValueError if the size causes ERROR_NO_SYSTEM_RESOURCES by Jesse Noller · 15 years ago
  37. 345b2fe Better exception messages for unittest assert methods. by Michael Foord · 15 years ago
  38. c4f90eb PyImport_AppendInittab() took a char * as a first argument even though that by Brett Cannon · 15 years ago
  39. b502bc7 Issue 3110: Additional protection for SEM_VALUE_MAX on platforms, thanks to Martin Loewis by Jesse Noller · 15 years ago
  40. 6471733 Add my initials to Misc/developers.txt. Names are now sorted by number of by Brett Cannon · 15 years ago
  41. 58b8b95 In Pdb, stop assigning values to __builtin__._ which interferes with the one commonly installed by gettext. by Georg Brandl · 15 years ago
  42. 5942b91 Add NEWS item. by Georg Brandl · 15 years ago
  43. ce3d221 test_warnings ironically had a single test that was not protecting the warnings by Brett Cannon · 15 years ago
  44. 2da4d62 test_logging was blindly clearing the warnings filter. This caused by Brett Cannon · 15 years ago
  45. 66c4a6b Issue #5647: MutableSet.__iand__() no longer mutates self during iteration. by Raymond Hettinger · 15 years ago
  46. 449b7d9 Adding Wing project file by Michael Foord · 15 years ago
  47. 15ba4da _warnings was importing itself to get an attribute. That's bad if warnings gets by Brett Cannon · 15 years ago
  48. 24565d2 Paul Kippes was given commit privileges to work on 3to2. by Brett Cannon · 15 years ago
  49. d5cc025 Ron DuPlain was given commit privileges at PyCon 2009 to work on 3to2. by Brett Cannon · 15 years ago
  50. ad078a0 The cgitb module had imports in its functions. This can cause deadlock with the by Brett Cannon · 15 years ago
  51. 6f0e835 Add Maksim, who worked on several issues at the sprint. by Georg Brandl · 15 years ago
  52. e92d4b6 The SimpleXMLRPCServer's CGI handler now runs like a pony. by Georg Brandl · 15 years ago
  53. a83da35 Fix issue 2522. locale.format now checks that it is passed by R. David Murray · 15 years ago
  54. d8fb6ac Issue #5635: Fix running test_sys with tracing enabled. by Georg Brandl · 15 years ago
  55. d60c29e #5228: add pickle support to functools.partial by Jack Diederich · 15 years ago
  56. 44fb2a9 #5617: add a handy function to print a unicode string to gdbinit. by Georg Brandl · 15 years ago
  57. 9e47ce4 #5583 Added optional Extensions in Distutils by Tarek Ziadé · 15 years ago
  58. 42f9b4e Issue 5619: Pass MS CRT debug flags into subprocesses by Jesse Noller · 15 years ago
  59. d906ea6 fix Thread.ident when it is the main thread or a dummy thread #5632 by Benjamin Peterson · 15 years ago
  60. 41448c5 Add NEWS entry for regrtest change. by R. David Murray · 15 years ago
  61. 1f0a555 missed the news/acks for netbsd patch by Jesse Noller · 15 years ago
  62. 2839985 The unittest.TestCase.assertEqual() now displays the differences in lists, by Gregory P. Smith · 15 years ago
  63. 9d2ee5d Issue #5387: Fixed mmap.move crash by integer overflow. by Hirokazu Yamamoto · 15 years ago
  64. 82eb590 merge in patch from tim golden to fix contextmanager support for mp.Lock() by Jesse Noller · 15 years ago
  65. e0154ed Fix issue #4865: add /Library/Python/2.7/site-packages to by Ronald Oussoren · 15 years ago
  66. 649fae1 Add several VM developers. by Martin v. Löwis · 15 years ago
  67. 459a648 Issue 5177: use socket.SO_REUSEADDR on multiprocessing SocketManager sockets by Jesse Noller · 15 years ago
  68. d1f5260 Add an entry to developers.txt. by Brett Cannon · 15 years ago
  69. 1972d16 Adjusted _tkinter to compile without warnings when WITH_THREAD is not by Guilherme Polo · 15 years ago
  70. cbdf15b News item for the platform.py fix (r70594). by Marc-André Lemburg · 15 years ago
  71. 692428e implement test skipping and expected failures by Benjamin Peterson · 15 years ago
  72. f8387af Issue #4688: Add a heuristic so that tuples and dicts containing only by Antoine Pitrou · 15 years ago
  73. 0b666bf Issue #5512: speed up the long division algorithm for Python longs. by Mark Dickinson · 15 years ago
  74. 2020a59 Issue #5068: Fixed the tarfile._BZ2Proxy.read() method that would loop by Lars Gustäbel · 15 years ago
  75. b364bfe close the file even if an exception occurs #5536 by Benjamin Peterson · 15 years ago
  76. 8ed2520 - Fix comment macro in python.man by Matthias Klose · 15 years ago
  77. efc82f7 Issue #4258: Use 30-bit digits for Python longs, on 64-bit platforms. by Mark Dickinson · 15 years ago
  78. 91852ca Issue 5381: Add object_pairs_hook to the json module. by Raymond Hettinger · 15 years ago
  79. 6ffe852 fix strange errors when setting attributes on tracebacks #4034 by Benjamin Peterson · 15 years ago
  80. 6b265f1 Issue 4474: On platforms with sizeof(wchar_t) == 4 and by Mark Dickinson · 15 years ago
  81. 277859d Issue #2110: Add support for thousands separator and 'n' format specifier by Mark Dickinson · 15 years ago
  82. b065e52 Fix bug in Decimal __format__ method that swapped left and right alignment. by Mark Dickinson · 15 years ago
  83. 6f42edb Issue 5237, Allow auto-numbered replacement fields in str.format() strings. by Eric Smith · 15 years ago
  84. feeafff Issue #1222: locale.format() bug when the thousands separator is a space character. by Antoine Pitrou · 15 years ago
  85. 61585c2 Issue #5472: Fixed distutils.test_util tear down by Tarek Ziadé · 15 years ago
  86. 6c4cff0 Require implementations for warnings.showwarning() support the 'line' argument. by Brett Cannon · 15 years ago
  87. 56411aa For collections.deque() objects, expose the maxlen parameter as a read-only attribute. by Raymond Hettinger · 15 years ago
  88. 629f9f2 Add Chris Withers. by Martin v. Löwis · 15 years ago
  89. 15d5765 Fixed issue #2638: Show a window constructed with tkSimpleDialog.Dialog only by Guilherme Polo · 15 years ago
  90. 3768b2f Fixed issue #4792: Prevent a segfault in _tkinter by using the by Guilherme Polo · 15 years ago
  91. 6d6c1fd Fixed issue #5193: Guarantee that Tkinter.Text.search returns a string. by Guilherme Polo · 15 years ago
  92. 943b24e Issue #5394: removed > 2.3 syntax from distutils.msvc9compiler by Tarek Ziadé · 15 years ago
  93. 264fc12 Issue #5385: Fixed mmap crash after resize failure on windows. by Hirokazu Yamamoto · 15 years ago
  94. eacbbdf Issue #5179: Fixed subprocess handle leak on failure on windows. by Hirokazu Yamamoto · 15 years ago
  95. e89b8e9 Backport 70111: Let configparser use ordered dicts by default. by Raymond Hettinger · 15 years ago
  96. 88a9164 Backport 70106: Add OrderedDict support to collections.namedtuple(). by Raymond Hettinger · 15 years ago
  97. bc512d3 Backport PEP 372: OrderedDict() by Raymond Hettinger · 15 years ago
  98. 7d49bba give httplib.IncompleteRead a more sane repr #4308 by Benjamin Peterson · 15 years ago
  99. ae91d09 Adds an optional flags argument to re.split, re.sub and re.subn to be by Gregory P. Smith · 15 years ago
  100. ad58b7c fix a silly problem of caching gone wrong #5401 by Benjamin Peterson · 15 years ago