1. b03f532 Revert debugging statements, culprit is possibly test_distutils (see #5316) by Antoine Pitrou · 16 years ago
  2. 13d1690 Try to make sense of the test_site buildbot failures by Antoine Pitrou · 16 years ago
  3. 2595edc using versionchanged instead of versionadded for distutils doc on sdist default files by Tarek Ziadé · 16 years ago
  4. 873389d fix compiler warnings by Benjamin Peterson · 16 years ago
  5. 3e4caeb Issue #5341: Fix a variety of spelling errors. by Mark Dickinson · 16 years ago
  6. a12a86e #5338, #5339: two types in the API manual. by Georg Brandl · 16 years ago
  7. be9b765 Speedup and simplify negative counter using count's new step argument. by Raymond Hettinger · 16 years ago
  8. aa681c7 Fix keyword arguments for itertools.count(). by Raymond Hettinger · 16 years ago
  9. 2752e9b Issue #5295: Typos in turtle.py by Mark Dickinson · 16 years ago
  10. 8725dce Issue 5176: special-case string formatting in BINARY_MODULO implementation. This shows a modest (1-3%) speed-up in templating systems, for example. by Collin Winter · 16 years ago
  11. 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
  12. 8b8c2df Fix punctuation. by Georg Brandl · 16 years ago
  13. 6b5dbaa At least separate imports from other statements. by Georg Brandl · 16 years ago
  14. 4a69872 #5327: fix a broken link by joining it. by Georg Brandl · 16 years ago
  15. a7b55a3 revert r69777 since all the experts agree that extra import lines distract from the code by Benjamin Peterson · 16 years ago
  16. 5149742 Since we recommend one module per import line, reflect this also in the by Jeroen Ruigrok van der Werven · 16 years ago
  17. a630735 #5317: update IronPython URL. by Georg Brandl · 16 years ago
  18. 1a0d2be #5287: Add exception handling around findCaller() call to help out IronPython. by Vinay Sajip · 16 years ago
  19. 8f9a1ee Inline coefficients in gamma(). Add reflection formula. Add comments. by Raymond Hettinger · 16 years ago
  20. e7cb1ce #5310, #3558: fix operator precedence table. by Georg Brandl · 16 years ago
  21. 749e6d0 Add links to helpful external resources. by Raymond Hettinger · 16 years ago
  22. 7d85495 Add an example for math.fsum() and elaborate on the accurary note. by Raymond Hettinger · 16 years ago
  23. f9bce83 Add some cross-references to the docs. Simplify the python code equivalent for izip(). Supply an optional argument for the nth() recipe. by Raymond Hettinger · 16 years ago
  24. 182edae Add keyword arg support to itertools.repeat(). by Raymond Hettinger · 16 years ago
  25. 2e2909f Add keyword arg support to itertools.compress(). by Raymond Hettinger · 16 years ago
  26. 08259e8 Py3k warnings now automatically include -Qwarn for division. by Raymond Hettinger · 16 years ago
  27. c8223b0 Generalize the itertools.tee() recipe. by Raymond Hettinger · 16 years ago
  28. 8367bec Clarify socket timeout behavior vs system network stack behavior on connect by Gregory P. Smith · 16 years ago
  29. 580d7c1 #5268: mention VMSError. by Georg Brandl · 16 years ago
  30. 0ac63f1 #5296: sequence -> iterable. by Georg Brandl · 16 years ago
  31. 52f6b6d #5297: fix example. by Georg Brandl · 16 years ago
  32. 0e5001e fixed the data_files inclusion behavior by Tarek Ziadé · 16 years ago
  33. 17a837e Issue #5282: Fixed mmap resize on 32bit windows and unix. When offset > 0, by Hirokazu Yamamoto · 16 years ago
  34. 1d0b5cc Clarify the deprecation of platform.dist(). by Marc-André Lemburg · 16 years ago
  35. 6290178 Fix issue776533. by Ronald Oussoren · 16 years ago
  36. 0aee942 Fixup intro paragraphs for the itertools docs. Add some tables for quick reference. by Raymond Hettinger · 16 years ago
  37. f6bbd0e Issue #5292: Fixed mmap crash on its boundary access m[len(m)]. by Hirokazu Yamamoto · 16 years ago
  38. f68b5b8 #2279 added the plain path case for data_files by Tarek Ziadé · 16 years ago
  39. f746a1f Fix-up intro paragraph for collections docs. by Raymond Hettinger · 16 years ago
  40. 7c98a6d Add explanation for super(type1, type2). by Raymond Hettinger · 16 years ago
  41. fd04870 Issue 5229: Documentation for super() neglects to say what super() actually does by Raymond Hettinger · 16 years ago
  42. f1c95fe note about #2279 by Tarek Ziadé · 16 years ago
  43. ae9dc8c #2279: use os.sep so the MANIFEST file test work on win32 by Tarek Ziadé · 16 years ago
  44. 7dd5339 Fixed #2279: distutils.sdist.add_defaults now add files listed in package_data and data_files by Tarek Ziadé · 16 years ago
  45. a7b0c12 PyList_Append() can fail by Benjamin Peterson · 16 years ago
  46. 5781f32 remove some PyBytes_* aliases that are not in 3.x by Benjamin Peterson · 16 years ago
  47. 062a7c3 fix compiler warnings by Benjamin Peterson · 16 years ago
  48. b21d810 Add GC support to count() objects. Backport candidate. by Raymond Hettinger · 16 years ago
  49. afb5a48 note functions that are not aliased to PyBytes_ #5280 by Benjamin Peterson · 16 years ago
  50. b6d0a52 Added Ross Light to ACKS, for bug 4285 (r69331). by Eric Smith · 16 years ago
  51. bcf6b18 A few more minor fixes in longobject.c by Mark Dickinson · 16 years ago
  52. 2ffb26f Issue #5260: Various portability and standards compliance fixes, optimizations by Mark Dickinson · 16 years ago
  53. 5b8c701 Fixed typo. by Hirokazu Yamamoto · 16 years ago
  54. f3715d2 #5179: don't leak PIPE fds when child execution fails. by Georg Brandl · 17 years ago
  55. 95777bb this needn't be a shebang line by Benjamin Peterson · 17 years ago
  56. 76afd3b we're no longer using CVS, so this doesn't have to be binary by Benjamin Peterson · 17 years ago
  57. 09d3d2d Replace variable by Tarek Ziadé · 17 years ago
  58. 1369900 Fix for #5257: refactored all tests in distutils, so they use a temporary directory. by Tarek Ziadé · 17 years ago
  59. a403803 Add keyword argument support to itertools.count(). by Raymond Hettinger · 17 years ago
  60. 544c3e1 fix the environ for distutils test_util by Tarek Ziadé · 17 years ago
  61. 2432b0b Fixed #4524: distutils build_script command failed with --with-suffix=3 by Tarek Ziadé · 17 years ago
  62. 275958a Issue #2461: added tests for distutils.util by Tarek Ziadé · 17 years ago
  63. 7e28b9c Add optional code signing after merging. by Martin v. Löwis · 17 years ago
  64. a63b995 Update Tix build procedure. by Martin v. Löwis · 17 years ago
  65. 416d31a Move amd64 properties further to the top, so that they override by Martin v. Löwis · 17 years ago
  66. 6f1d931 reverted leak fix, to use the one done in py3k branch (r67382) by Tarek Ziadé · 17 years ago
  67. 9e8a250 Fix compiler warning (gcc) by Antoine Pitrou · 17 years ago
  68. 76a4b89 Issue #5186: Reduce hash collisions for objects with no __hash__ method by by Antoine Pitrou · 17 years ago
  69. 2c079297 Fix warnings GCC emits where the argument of PyErr_Format is a single variable. by Georg Brandl · 17 years ago
  70. cbb4958 Fix warnings GCC emits where the argument of PyErr_Format is a single variable. by Georg Brandl · 17 years ago
  71. 0638a08 #3694: add test for fix committed in r66693. by Georg Brandl · 17 years ago
  72. 5ccf2ae #1661108: note that urlsafe encoded string can contain "=". by Georg Brandl · 17 years ago
  73. 9834dd7 #3734: document complex coercing behavior better. by Georg Brandl · 17 years ago
  74. 8fba5b3 #4894: document "newurl" parameter to redirect_request(). by Georg Brandl · 17 years ago
  75. e6aeba7 #5158: added documentation on the depends option in distutils extensions by Tarek Ziadé · 17 years ago
  76. 5b2cb1d Add links to the other versions we have in stock. by Georg Brandl · 17 years ago
  77. ea38826 - Issue #3745: Fix hashlib to always reject unicode and non buffer-api by Gregory P. Smith · 17 years ago
  78. b516c12 fixing the leak introduced in r69304 by Tarek Ziadé · 17 years ago
  79. 39c6f7f Typo fix. by Mark Dickinson · 17 years ago
  80. dbe3bfb One more test. by Raymond Hettinger · 17 years ago
  81. aa04461 Add an extra testcase. by Raymond Hettinger · 17 years ago
  82. 66373ab Fix spaces/tabs in example. by Raymond Hettinger · 17 years ago
  83. 31c769c Issue 5032: added a step argument to itertools.count() and allowed non-integer arguments. by Raymond Hettinger · 17 years ago
  84. 4bb96fe no need for this __bases__ trick anymore by Benjamin Peterson · 17 years ago
  85. 1312b4b os.fsync() should be used to ensure that data is written to disk by Benjamin Peterson · 17 years ago
  86. 3605b5c Issue #1008086: Fixes socket.inet_aton() to always return 4 bytes even by Gregory P. Smith · 17 years ago
  87. bcd3ea8 Issue #5204: Define _PyVerify_fd on VC6 to make test_fdopen (test_os.py) pass. by Hirokazu Yamamoto · 17 years ago
  88. e4ae63c Clean-up named tuple docs. by Raymond Hettinger · 17 years ago
  89. 3689ae2 Issue#5203: ctypes segfaults when passing a unicode string to a by Thomas Heller · 17 years ago
  90. d155bbf _testcapi depends on testcapi_long.h by Mark Dickinson · 17 years ago
  91. 4015f62 Issue #5175: PyLong_AsUnsignedLongLong now raises OverflowError for by Mark Dickinson · 17 years ago
  92. 6a743d3 Issue 4804. Add a function to test the validity of file descriptors on Windows, and stop using global runtime settings to silence the warnings / assertions. by Kristján Valur Jónsson · 17 years ago
  93. e71fc87 Fixed svn:eol-style. by Hirokazu Yamamoto · 17 years ago
  94. de7cdee Set eol-style to native by Martin v. Löwis · 17 years ago
  95. a3e3cb7 Issue #5134: Silence compiler warnings when compiling sqlite with VC++. by Martin v. Löwis · 17 years ago
  96. 74fbf60 Fixed #3386: the optional prefix argument was ignored under OS2 and NT in distutils.sysconfig.get_python_lib by Tarek Ziadé · 17 years ago
  97. 28d1088 compileall used the ctime of bytecode and source to determine if the bytecode by Brett Cannon · 17 years ago
  98. 322daea Issue 1818: collections.namedtuple() to support automatic renaming of invalid fieldnames. by Raymond Hettinger · 17 years ago
  99. c5eba1e Enforcing Tk 8.3.1 requirement. by Guilherme Polo · 17 years ago
  100. a66cf5b Fixed issue #5122: Synchronize tk load failure check to prevent a by Guilherme Polo · 17 years ago