1. ea0d744 revert r71159 since it broke the build by Benjamin Peterson · 15 years ago
  2. 8212a82 - Py_DECREF: Add `do { ... } while (0)' to avoid compiler warnings. by Matthias Klose · 15 years ago
  3. edb5e1e - Issue #3845: In PyRun_SimpleFileExFlags avoid invalid memory access with by Matthias Klose · 15 years ago
  4. 789be0c Issue #2396: backport the memoryview object. by Antoine Pitrou · 15 years ago
  5. d3f03fa PyErr_NormalizeException may not set an error, so convert the PyErr_SetObject by Georg Brandl · 15 years ago
  6. 52720c5 Add missing iteritems() call to the for loop in mailbox.MH.get_message(). by R. David Murray · 15 years ago
  7. 7152f6d Add custom initializer argument to multiprocess.Manager*, courtesy of lekma by Jesse Noller · 15 years ago
  8. 5053fbb Issue 3551: Raise ValueError if the size causes ERROR_NO_SYSTEM_RESOURCES by Jesse Noller · 15 years ago
  9. 345b2fe Better exception messages for unittest assert methods. by Michael Foord · 15 years ago
  10. c4f90eb PyImport_AppendInittab() took a char * as a first argument even though that by Brett Cannon · 15 years ago
  11. b502bc7 Issue 3110: Additional protection for SEM_VALUE_MAX on platforms, thanks to Martin Loewis by Jesse Noller · 15 years ago
  12. 6471733 Add my initials to Misc/developers.txt. Names are now sorted by number of by Brett Cannon · 15 years ago
  13. 58b8b95 In Pdb, stop assigning values to __builtin__._ which interferes with the one commonly installed by gettext. by Georg Brandl · 15 years ago
  14. 5942b91 Add NEWS item. by Georg Brandl · 15 years ago
  15. ce3d221 test_warnings ironically had a single test that was not protecting the warnings by Brett Cannon · 15 years ago
  16. 2da4d62 test_logging was blindly clearing the warnings filter. This caused by Brett Cannon · 15 years ago
  17. 66c4a6b Issue #5647: MutableSet.__iand__() no longer mutates self during iteration. by Raymond Hettinger · 15 years ago
  18. 449b7d9 Adding Wing project file by Michael Foord · 15 years ago
  19. 15ba4da _warnings was importing itself to get an attribute. That's bad if warnings gets by Brett Cannon · 15 years ago
  20. 24565d2 Paul Kippes was given commit privileges to work on 3to2. by Brett Cannon · 15 years ago
  21. d5cc025 Ron DuPlain was given commit privileges at PyCon 2009 to work on 3to2. by Brett Cannon · 15 years ago
  22. ad078a0 The cgitb module had imports in its functions. This can cause deadlock with the by Brett Cannon · 15 years ago
  23. 6f0e835 Add Maksim, who worked on several issues at the sprint. by Georg Brandl · 15 years ago
  24. e92d4b6 The SimpleXMLRPCServer's CGI handler now runs like a pony. by Georg Brandl · 15 years ago
  25. a83da35 Fix issue 2522. locale.format now checks that it is passed by R. David Murray · 15 years ago
  26. d8fb6ac Issue #5635: Fix running test_sys with tracing enabled. by Georg Brandl · 15 years ago
  27. d60c29e #5228: add pickle support to functools.partial by Jack Diederich · 15 years ago
  28. 44fb2a9 #5617: add a handy function to print a unicode string to gdbinit. by Georg Brandl · 15 years ago
  29. 9e47ce4 #5583 Added optional Extensions in Distutils by Tarek Ziadé · 15 years ago
  30. 42f9b4e Issue 5619: Pass MS CRT debug flags into subprocesses by Jesse Noller · 15 years ago
  31. d906ea6 fix Thread.ident when it is the main thread or a dummy thread #5632 by Benjamin Peterson · 15 years ago
  32. 41448c5 Add NEWS entry for regrtest change. by R. David Murray · 15 years ago
  33. 1f0a555 missed the news/acks for netbsd patch by Jesse Noller · 15 years ago
  34. 2839985 The unittest.TestCase.assertEqual() now displays the differences in lists, by Gregory P. Smith · 15 years ago
  35. 9d2ee5d Issue #5387: Fixed mmap.move crash by integer overflow. by Hirokazu Yamamoto · 15 years ago
  36. 82eb590 merge in patch from tim golden to fix contextmanager support for mp.Lock() by Jesse Noller · 15 years ago
  37. e0154ed Fix issue #4865: add /Library/Python/2.7/site-packages to by Ronald Oussoren · 15 years ago
  38. 649fae1 Add several VM developers. by Martin v. Löwis · 15 years ago
  39. 459a648 Issue 5177: use socket.SO_REUSEADDR on multiprocessing SocketManager sockets by Jesse Noller · 15 years ago
  40. d1f5260 Add an entry to developers.txt. by Brett Cannon · 15 years ago
  41. 1972d16 Adjusted _tkinter to compile without warnings when WITH_THREAD is not by Guilherme Polo · 15 years ago
  42. cbdf15b News item for the platform.py fix (r70594). by Marc-André Lemburg · 15 years ago
  43. 692428e implement test skipping and expected failures by Benjamin Peterson · 15 years ago
  44. f8387af Issue #4688: Add a heuristic so that tuples and dicts containing only by Antoine Pitrou · 15 years ago
  45. 0b666bf Issue #5512: speed up the long division algorithm for Python longs. by Mark Dickinson · 15 years ago
  46. 2020a59 Issue #5068: Fixed the tarfile._BZ2Proxy.read() method that would loop by Lars Gustäbel · 15 years ago
  47. b364bfe close the file even if an exception occurs #5536 by Benjamin Peterson · 15 years ago
  48. 8ed2520 - Fix comment macro in python.man by Matthias Klose · 15 years ago
  49. efc82f7 Issue #4258: Use 30-bit digits for Python longs, on 64-bit platforms. by Mark Dickinson · 15 years ago
  50. 91852ca Issue 5381: Add object_pairs_hook to the json module. by Raymond Hettinger · 15 years ago
  51. 6ffe852 fix strange errors when setting attributes on tracebacks #4034 by Benjamin Peterson · 15 years ago
  52. 6b265f1 Issue 4474: On platforms with sizeof(wchar_t) == 4 and by Mark Dickinson · 15 years ago
  53. 277859d Issue #2110: Add support for thousands separator and 'n' format specifier by Mark Dickinson · 15 years ago
  54. b065e52 Fix bug in Decimal __format__ method that swapped left and right alignment. by Mark Dickinson · 15 years ago
  55. 6f42edb Issue 5237, Allow auto-numbered replacement fields in str.format() strings. by Eric Smith · 16 years ago
  56. feeafff Issue #1222: locale.format() bug when the thousands separator is a space character. by Antoine Pitrou · 16 years ago
  57. 61585c2 Issue #5472: Fixed distutils.test_util tear down by Tarek Ziadé · 16 years ago
  58. 6c4cff0 Require implementations for warnings.showwarning() support the 'line' argument. by Brett Cannon · 16 years ago
  59. 56411aa For collections.deque() objects, expose the maxlen parameter as a read-only attribute. by Raymond Hettinger · 16 years ago
  60. 629f9f2 Add Chris Withers. by Martin v. Löwis · 16 years ago
  61. 15d5765 Fixed issue #2638: Show a window constructed with tkSimpleDialog.Dialog only by Guilherme Polo · 16 years ago
  62. 3768b2f Fixed issue #4792: Prevent a segfault in _tkinter by using the by Guilherme Polo · 16 years ago
  63. 6d6c1fd Fixed issue #5193: Guarantee that Tkinter.Text.search returns a string. by Guilherme Polo · 16 years ago
  64. 943b24e Issue #5394: removed > 2.3 syntax from distutils.msvc9compiler by Tarek Ziadé · 16 years ago
  65. 264fc12 Issue #5385: Fixed mmap crash after resize failure on windows. by Hirokazu Yamamoto · 16 years ago
  66. eacbbdf Issue #5179: Fixed subprocess handle leak on failure on windows. by Hirokazu Yamamoto · 16 years ago
  67. e89b8e9 Backport 70111: Let configparser use ordered dicts by default. by Raymond Hettinger · 16 years ago
  68. 88a9164 Backport 70106: Add OrderedDict support to collections.namedtuple(). by Raymond Hettinger · 16 years ago
  69. bc512d3 Backport PEP 372: OrderedDict() by Raymond Hettinger · 16 years ago
  70. 7d49bba give httplib.IncompleteRead a more sane repr #4308 by Benjamin Peterson · 16 years ago
  71. ae91d09 Adds an optional flags argument to re.split, re.sub and re.subn to be by Gregory P. Smith · 16 years ago
  72. ad58b7c fix a silly problem of caching gone wrong #5401 by Benjamin Peterson · 16 years ago
  73. b0e10c7 Issue #1733986: Fixed mmap crash in accessing elements of second map object by Hirokazu Yamamoto · 16 years ago
  74. f2dc885 Issue #5386: mmap.write_byte didn't check map size, so it could cause buffer by Hirokazu Yamamoto · 16 years ago
  75. 7334735 Issues #1533164 and #5378: Added quiet and force-optimize options to Distutils bdist_rpm command by Tarek Ziadé · 16 years ago
  76. dda92f7 Issue #5052: make Distutils compatible with 2.3 again. by Tarek Ziadé · 16 years ago
  77. b3dd548 remove deprecated symtable.Symbol methods by Benjamin Peterson · 16 years ago
  78. e3bc0ef Fixed #5316 : test failure in test_site by Tarek Ziadé · 16 years ago
  79. 8ad554f - Link the shared python library with $(MODLIBS). by Matthias Klose · 16 years ago
  80. 3e4caeb Issue #5341: Fix a variety of spelling errors. by Mark Dickinson · 16 years ago
  81. e9fb686 Issue #5247: Improve error message when unknown format codes are used when using str.format() with str, unicode, long, int, and float arguments. by Eric Smith · 16 years ago
  82. 1a0d2be #5287: Add exception handling around findCaller() call to help out IronPython. by Vinay Sajip · 16 years ago
  83. 08259e8 Py3k warnings now automatically include -Qwarn for division. by Raymond Hettinger · 16 years ago
  84. 0e5001e fixed the data_files inclusion behavior by Tarek Ziadé · 16 years ago
  85. 17a837e Issue #5282: Fixed mmap resize on 32bit windows and unix. When offset > 0, by Hirokazu Yamamoto · 16 years ago
  86. f6bbd0e Issue #5292: Fixed mmap crash on its boundary access m[len(m)]. by Hirokazu Yamamoto · 16 years ago
  87. 7dd5339 Fixed #2279: distutils.sdist.add_defaults now add files listed in package_data and data_files by Tarek Ziadé · 16 years ago
  88. 5781f32 remove some PyBytes_* aliases that are not in 3.x by Benjamin Peterson · 16 years ago
  89. b6d0a52 Added Ross Light to ACKS, for bug 4285 (r69331). by Eric Smith · 16 years ago
  90. 2ffb26f Issue #5260: Various portability and standards compliance fixes, optimizations by Mark Dickinson · 16 years ago
  91. 1369900 Fix for #5257: refactored all tests in distutils, so they use a temporary directory. by Tarek Ziadé · 16 years ago
  92. 2432b0b Fixed #4524: distutils build_script command failed with --with-suffix=3 by Tarek Ziadé · 16 years ago
  93. 275958a Issue #2461: added tests for distutils.util by Tarek Ziadé · 16 years ago
  94. 76a4b89 Issue #5186: Reduce hash collisions for objects with no __hash__ method by by Antoine Pitrou · 16 years ago
  95. ea38826 - Issue #3745: Fix hashlib to always reject unicode and non buffer-api by Gregory P. Smith · 16 years ago
  96. 39c6f7f Typo fix. by Mark Dickinson · 16 years ago
  97. 31c769c Issue 5032: added a step argument to itertools.count() and allowed non-integer arguments. by Raymond Hettinger · 16 years ago
  98. 3605b5c Issue #1008086: Fixes socket.inet_aton() to always return 4 bytes even by Gregory P. Smith · 16 years ago
  99. 3689ae2 Issue#5203: ctypes segfaults when passing a unicode string to a by Thomas Heller · 16 years ago
  100. 4015f62 Issue #5175: PyLong_AsUnsignedLongLong now raises OverflowError for by Mark Dickinson · 16 years ago