1. d3f03fa PyErr_NormalizeException may not set an error, so convert the PyErr_SetObject by Georg Brandl · 15 years ago
  2. 52720c5 Add missing iteritems() call to the for loop in mailbox.MH.get_message(). by R. David Murray · 15 years ago
  3. 7152f6d Add custom initializer argument to multiprocess.Manager*, courtesy of lekma by Jesse Noller · 15 years ago
  4. 5053fbb Issue 3551: Raise ValueError if the size causes ERROR_NO_SYSTEM_RESOURCES by Jesse Noller · 15 years ago
  5. 345b2fe Better exception messages for unittest assert methods. by Michael Foord · 15 years ago
  6. c4f90eb PyImport_AppendInittab() took a char * as a first argument even though that by Brett Cannon · 15 years ago
  7. b502bc7 Issue 3110: Additional protection for SEM_VALUE_MAX on platforms, thanks to Martin Loewis by Jesse Noller · 15 years ago
  8. 58b8b95 In Pdb, stop assigning values to __builtin__._ which interferes with the one commonly installed by gettext. by Georg Brandl · 15 years ago
  9. 5942b91 Add NEWS item. by Georg Brandl · 15 years ago
  10. ce3d221 test_warnings ironically had a single test that was not protecting the warnings by Brett Cannon · 15 years ago
  11. 2da4d62 test_logging was blindly clearing the warnings filter. This caused by Brett Cannon · 15 years ago
  12. 66c4a6b Issue #5647: MutableSet.__iand__() no longer mutates self during iteration. by Raymond Hettinger · 15 years ago
  13. 15ba4da _warnings was importing itself to get an attribute. That's bad if warnings gets by Brett Cannon · 15 years ago
  14. ad078a0 The cgitb module had imports in its functions. This can cause deadlock with the by Brett Cannon · 15 years ago
  15. e92d4b6 The SimpleXMLRPCServer's CGI handler now runs like a pony. by Georg Brandl · 15 years ago
  16. a83da35 Fix issue 2522. locale.format now checks that it is passed by R. David Murray · 15 years ago
  17. d8fb6ac Issue #5635: Fix running test_sys with tracing enabled. by Georg Brandl · 15 years ago
  18. d60c29e #5228: add pickle support to functools.partial by Jack Diederich · 15 years ago
  19. 9e47ce4 #5583 Added optional Extensions in Distutils by Tarek Ziadé · 15 years ago
  20. 42f9b4e Issue 5619: Pass MS CRT debug flags into subprocesses by Jesse Noller · 15 years ago
  21. d906ea6 fix Thread.ident when it is the main thread or a dummy thread #5632 by Benjamin Peterson · 15 years ago
  22. 41448c5 Add NEWS entry for regrtest change. by R. David Murray · 15 years ago
  23. 1f0a555 missed the news/acks for netbsd patch by Jesse Noller · 15 years ago
  24. 2839985 The unittest.TestCase.assertEqual() now displays the differences in lists, by Gregory P. Smith · 15 years ago
  25. 9d2ee5d Issue #5387: Fixed mmap.move crash by integer overflow. by Hirokazu Yamamoto · 15 years ago
  26. 82eb590 merge in patch from tim golden to fix contextmanager support for mp.Lock() by Jesse Noller · 15 years ago
  27. e0154ed Fix issue #4865: add /Library/Python/2.7/site-packages to by Ronald Oussoren · 15 years ago
  28. 459a648 Issue 5177: use socket.SO_REUSEADDR on multiprocessing SocketManager sockets by Jesse Noller · 15 years ago
  29. 1972d16 Adjusted _tkinter to compile without warnings when WITH_THREAD is not by Guilherme Polo · 15 years ago
  30. cbdf15b News item for the platform.py fix (r70594). by Marc-André Lemburg · 15 years ago
  31. 692428e implement test skipping and expected failures by Benjamin Peterson · 15 years ago
  32. f8387af Issue #4688: Add a heuristic so that tuples and dicts containing only by Antoine Pitrou · 15 years ago
  33. 0b666bf Issue #5512: speed up the long division algorithm for Python longs. by Mark Dickinson · 15 years ago
  34. 2020a59 Issue #5068: Fixed the tarfile._BZ2Proxy.read() method that would loop by Lars Gustäbel · 15 years ago
  35. b364bfe close the file even if an exception occurs #5536 by Benjamin Peterson · 15 years ago
  36. efc82f7 Issue #4258: Use 30-bit digits for Python longs, on 64-bit platforms. by Mark Dickinson · 15 years ago
  37. 91852ca Issue 5381: Add object_pairs_hook to the json module. by Raymond Hettinger · 15 years ago
  38. 6ffe852 fix strange errors when setting attributes on tracebacks #4034 by Benjamin Peterson · 15 years ago
  39. 6b265f1 Issue 4474: On platforms with sizeof(wchar_t) == 4 and by Mark Dickinson · 15 years ago
  40. 277859d Issue #2110: Add support for thousands separator and 'n' format specifier by Mark Dickinson · 15 years ago
  41. b065e52 Fix bug in Decimal __format__ method that swapped left and right alignment. by Mark Dickinson · 15 years ago
  42. 6f42edb Issue 5237, Allow auto-numbered replacement fields in str.format() strings. by Eric Smith · 15 years ago
  43. feeafff Issue #1222: locale.format() bug when the thousands separator is a space character. by Antoine Pitrou · 15 years ago
  44. 61585c2 Issue #5472: Fixed distutils.test_util tear down by Tarek Ziadé · 15 years ago
  45. 6c4cff0 Require implementations for warnings.showwarning() support the 'line' argument. by Brett Cannon · 15 years ago
  46. 56411aa For collections.deque() objects, expose the maxlen parameter as a read-only attribute. by Raymond Hettinger · 15 years ago
  47. 15d5765 Fixed issue #2638: Show a window constructed with tkSimpleDialog.Dialog only by Guilherme Polo · 15 years ago
  48. 3768b2f Fixed issue #4792: Prevent a segfault in _tkinter by using the by Guilherme Polo · 15 years ago
  49. 6d6c1fd Fixed issue #5193: Guarantee that Tkinter.Text.search returns a string. by Guilherme Polo · 15 years ago
  50. 943b24e Issue #5394: removed > 2.3 syntax from distutils.msvc9compiler by Tarek Ziadé · 15 years ago
  51. 264fc12 Issue #5385: Fixed mmap crash after resize failure on windows. by Hirokazu Yamamoto · 15 years ago
  52. eacbbdf Issue #5179: Fixed subprocess handle leak on failure on windows. by Hirokazu Yamamoto · 15 years ago
  53. e89b8e9 Backport 70111: Let configparser use ordered dicts by default. by Raymond Hettinger · 15 years ago
  54. 88a9164 Backport 70106: Add OrderedDict support to collections.namedtuple(). by Raymond Hettinger · 15 years ago
  55. bc512d3 Backport PEP 372: OrderedDict() by Raymond Hettinger · 15 years ago
  56. 7d49bba give httplib.IncompleteRead a more sane repr #4308 by Benjamin Peterson · 15 years ago
  57. ae91d09 Adds an optional flags argument to re.split, re.sub and re.subn to be by Gregory P. Smith · 15 years ago
  58. ad58b7c fix a silly problem of caching gone wrong #5401 by Benjamin Peterson · 15 years ago
  59. b0e10c7 Issue #1733986: Fixed mmap crash in accessing elements of second map object by Hirokazu Yamamoto · 15 years ago
  60. f2dc885 Issue #5386: mmap.write_byte didn't check map size, so it could cause buffer by Hirokazu Yamamoto · 15 years ago
  61. 7334735 Issues #1533164 and #5378: Added quiet and force-optimize options to Distutils bdist_rpm command by Tarek Ziadé · 15 years ago
  62. dda92f7 Issue #5052: make Distutils compatible with 2.3 again. by Tarek Ziadé · 15 years ago
  63. b3dd548 remove deprecated symtable.Symbol methods by Benjamin Peterson · 15 years ago
  64. e3bc0ef Fixed #5316 : test failure in test_site by Tarek Ziadé · 15 years ago
  65. 8ad554f - Link the shared python library with $(MODLIBS). by Matthias Klose · 15 years ago
  66. 3e4caeb Issue #5341: Fix a variety of spelling errors. by Mark Dickinson · 15 years ago
  67. 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 · 15 years ago
  68. 1a0d2be #5287: Add exception handling around findCaller() call to help out IronPython. by Vinay Sajip · 15 years ago
  69. 08259e8 Py3k warnings now automatically include -Qwarn for division. by Raymond Hettinger · 15 years ago
  70. 17a837e Issue #5282: Fixed mmap resize on 32bit windows and unix. When offset > 0, by Hirokazu Yamamoto · 15 years ago
  71. f6bbd0e Issue #5292: Fixed mmap crash on its boundary access m[len(m)]. by Hirokazu Yamamoto · 15 years ago
  72. 7dd5339 Fixed #2279: distutils.sdist.add_defaults now add files listed in package_data and data_files by Tarek Ziadé · 15 years ago
  73. 5781f32 remove some PyBytes_* aliases that are not in 3.x by Benjamin Peterson · 15 years ago
  74. 2ffb26f Issue #5260: Various portability and standards compliance fixes, optimizations by Mark Dickinson · 15 years ago
  75. 1369900 Fix for #5257: refactored all tests in distutils, so they use a temporary directory. by Tarek Ziadé · 15 years ago
  76. 2432b0b Fixed #4524: distutils build_script command failed with --with-suffix=3 by Tarek Ziadé · 15 years ago
  77. 275958a Issue #2461: added tests for distutils.util by Tarek Ziadé · 15 years ago
  78. 76a4b89 Issue #5186: Reduce hash collisions for objects with no __hash__ method by by Antoine Pitrou · 15 years ago
  79. ea38826 - Issue #3745: Fix hashlib to always reject unicode and non buffer-api by Gregory P. Smith · 15 years ago
  80. 39c6f7f Typo fix. by Mark Dickinson · 15 years ago
  81. 31c769c Issue 5032: added a step argument to itertools.count() and allowed non-integer arguments. by Raymond Hettinger · 15 years ago
  82. 3605b5c Issue #1008086: Fixes socket.inet_aton() to always return 4 bytes even by Gregory P. Smith · 15 years ago
  83. 3689ae2 Issue#5203: ctypes segfaults when passing a unicode string to a by Thomas Heller · 15 years ago
  84. 4015f62 Issue #5175: PyLong_AsUnsignedLongLong now raises OverflowError for by Mark Dickinson · 15 years ago
  85. a3e3cb7 Issue #5134: Silence compiler warnings when compiling sqlite with VC++. by Martin v. Löwis · 15 years ago
  86. 74fbf60 Fixed #3386: the optional prefix argument was ignored under OS2 and NT in distutils.sysconfig.get_python_lib by Tarek Ziadé · 15 years ago
  87. 28d1088 compileall used the ctime of bytecode and source to determine if the bytecode by Brett Cannon · 15 years ago
  88. 322daea Issue 1818: collections.namedtuple() to support automatic renaming of invalid fieldnames. by Raymond Hettinger · 15 years ago
  89. a66cf5b Fixed issue #5122: Synchronize tk load failure check to prevent a by Guilherme Polo · 15 years ago
  90. d2ea033 Fixed issue #4890: Handle empty text search pattern in Tkinter.Text.search by Guilherme Polo · 15 years ago
  91. c97c909 Issue #4575: fix Py_IS_INFINITY macro to work correctly on x87 FPUs. by Mark Dickinson · 15 years ago
  92. b20af94 Issue #5170: Fixed Unicode output bug in logging and added test case. This is a regression which did not occur in 2.5. by Vinay Sajip · 15 years ago
  93. 0194f5b Issue #4512 closeout: Make ZipImport.get_filename() a public method by Nick Coghlan · 15 years ago
  94. c3623b1 Mention patch submitter in NEWS entry for r69419 by Nick Coghlan · 15 years ago
  95. d39600e Issue 4195: Restore the ability to execute packages with the -m switch (but this time in a way that leaves the import machinery in a valid state). (Original patch by Andi Vajda) by Nick Coghlan · 15 years ago
  96. 92c3b21 Issue #999042: The Python compiler now handles explict global statements by Neil Schemenauer · 15 years ago
  97. 363161a Issue #1731706: Call Tcl_ConditionFinalize for Tcl_Conditions that will by Guilherme Polo · 15 years ago
  98. 14ff18d Partial fix to issue #1731706: memory leak in Tkapp_Call when calling by Guilherme Polo · 15 years ago
  99. 05adf07 fixed #1520877: now distutils reads Read from the environment/Makefile by Tarek Ziadé · 15 years ago
  100. 81fe093 Implement issue #4285, convert sys.version_info to a named by Eric Smith · 15 years ago