1. 1e5c5f8 #1745035: add limits for command and data size to smtpd; patch by Savio Sena. by Georg Brandl · 14 years ago
  2. 106a54d Move entries from "core" section to where they belong. by Georg Brandl · 14 years ago
  3. bb7b753 Add missing versionchanged, correct 'throw' wording to 'raise'. by R. David Murray · 14 years ago
  4. b579dba #1486713: Add a tolerant mode to HTMLParser. by R. David Murray · 14 years ago
  5. 79cdb66 Fix #10554. Added context manager support to Popen objects. by Brian Curtin · 14 years ago
  6. 2d93e6e Update the itertools.accumulate() docs. by Raymond Hettinger · 14 years ago
  7. 240f112 Remove test/__main__.py until runpy tests can be fixed by Michael Foord · 14 years ago
  8. d8ff465 Simplify the signature for itertools.accumulate() to match numpy. Handle one item iterable the same way as min()/max(). by Raymond Hettinger · 14 years ago
  9. a7a0e1a Set test.regrtest.TEMPDIR correctly when run with 'python -m test' by Michael Foord · 14 years ago
  10. 9efdcca code style by Benjamin Peterson · 14 years ago
  11. e2befc1 Initial implementation of Lib/test/__main__.py so we can run tests with 'python -m test' by Michael Foord · 14 years ago
  12. 5074df6 Issue 7911: unittest.TestCase.longMessage defaults to True for improved failure messages by default by Michael Foord · 14 years ago
  13. 1203720 Re-add accidentally removed line. by Georg Brandl · 14 years ago
  14. 5137d64 Fix wrong test code in test_csv (#10602) by Éric Araujo · 14 years ago
  15. 9833822 Issue9915: speeding up sorting with a key by Daniel Stutzbach · 14 years ago
  16. a0b44b5 #8989: add 'domain' keyword to make_msgid. by R. David Murray · 14 years ago
  17. 52173d4 Fix #9333. Expose os.symlink on Windows only when usable. by Brian Curtin · 14 years ago
  18. 0252462 #7475: add (un)transform method to bytes/bytearray and str, add back codecs that can be used with them from Python 2. by Georg Brandl · 14 years ago
  19. de0ab5e #10597: fix Py_SetPythonHome docs by pointing to where the meaning of PYTHONHOME is already documented. by Georg Brandl · 14 years ago
  20. ee25568 Fix spelling of Jamie Zawinski's surname in urllib.parse docstring (issue 10606) by David Malcolm · 14 years ago
  21. c167368 Fix-up documentation of makedirs(). by Georg Brandl · 14 years ago
  22. 5a22b65 Issue 9299 Add exist_ok parameter to os.makedirs to suppress 'File exists' exception. Patch by Ray Allen. by Terry Reedy · 14 years ago
  23. 3cdf871 Neaten-up random module docs. by Raymond Hettinger · 14 years ago
  24. b2ddf79 Issue #9573: os.fork now works when triggered as a side effect of import (the wisdom of actually relying on this remains questionable!) by Nick Coghlan · 14 years ago
  25. d2bb830 #10464: fix netrc handling of lines with embedded '#" characters. by R. David Murray · 14 years ago
  26. 2fdc7b1 Add an example to the random docs. by Raymond Hettinger · 14 years ago
  27. c74d518 Fix markup by Raymond Hettinger · 14 years ago
  28. f546e70 Issue4335: Added a test for inspect.getsourcelines with a module without EOL at EOF. by Alexander Belopolsky · 14 years ago
  29. 507e3f8 With Raymond's approval added a paragraph describing Unicode 6.0.0 changes. Not reST formatted. by Alexander Belopolsky · 14 years ago
  30. 30c7362 Clean-up last update (missing comma, unnecessary spacing change, spurious backtick). by Raymond Hettinger · 14 years ago
  31. adb8146 Add itertools.accumulate(). by Raymond Hettinger · 14 years ago
  32. 482ba77 Add itertools.accumulate(). by Raymond Hettinger · 14 years ago
  33. 2f9a77a Reverted unintended change from r86916 by Alexander Belopolsky · 14 years ago
  34. 41e422a Issue #4113: Added custom __repr__ method to functools.partial. by Alexander Belopolsky · 14 years ago
  35. 419e3de Fix some markup and style in the unittest docs. by Georg Brandl · 14 years ago
  36. f7f5a82 #10594: fix parameter names in PyList API docs. by Georg Brandl · 14 years ago
  37. 063f237 Add missing word, and add a better reference to the actual function. by Georg Brandl · 14 years ago
  38. 5ce0aa2 Add recipe to itertools doc. by Raymond Hettinger · 14 years ago
  39. c79fb0e Issue 10593: Adopt Nick's suggestion for an lru_cache with maxsize=None. by Raymond Hettinger · 14 years ago
  40. ed3a7d2 #10273: Rename assertRegexpMatches and assertRaisesRegexp to assertRegex and assertRaisesRegex. by Ezio Melotti · 14 years ago
  41. f10c400 Fix test failure in debug builds and add NEWS entry for r86908 by Ezio Melotti · 14 years ago
  42. 6090187 #10535: Enable silenced warnings in unittest by default by Ezio Melotti · 14 years ago
  43. 00f2f97 Doc and docstring nits. by Raymond Hettinger · 14 years ago
  44. c0abc4e Fix #10591. Fix test_os for refleak runs. by Brian Curtin · 14 years ago
  45. 715f3cd Issue #8685: Speed up set difference `a - b` when source set `a` is by Antoine Pitrou · 14 years ago
  46. 697ce95 Add link to specification. by Raymond Hettinger · 14 years ago
  47. cc03858 Documentation nits. by Raymond Hettinger · 14 years ago
  48. 7496b41 Add example, tighten text, and minor clean-ups. by Raymond Hettinger · 14 years ago
  49. d01df46 Fix typo: "ofbytes" should be "of bytes" by Daniel Stutzbach · 14 years ago
  50. dcb4491 Add some internal links. by Raymond Hettinger · 14 years ago
  51. 73f382d Issue #9598: untabify.py will now respect encoding cookie in the files it processes by Alexander Belopolsky · 14 years ago
  52. ff2a4ba Let’s keep “throw” for the generator method and use “raise” elsewhere. by Éric Araujo · 14 years ago
  53. 827fdaa Issue #10552: Partially fixed a sort error in Tools/unicode/gencodec.py by Alexander Belopolsky · 14 years ago
  54. f498b75 Actually fix what I attempted to fix in r86888... by Brian Curtin · 14 years ago
  55. 9fc443c Issue 9873: the URL parsing functions now accept ASCII encoded byte sequences in addition to character strings by Nick Coghlan · 14 years ago
  56. 43f0c27 Try to fix failures on platforms that can't encode the test characters. by Brian Curtin · 14 years ago
  57. 5aa580f Fix typo. by Georg Brandl · 14 years ago
  58. e5b99f0 Remove redundant includes of headers that are already included by Python.h. by Georg Brandl · 14 years ago
  59. 71c23d4 Include structseq.h in Python.h, and remove now-redundant includes in individual sources. by Georg Brandl · 14 years ago
  60. 53afa6d Fix input type for zlib. by Georg Brandl · 14 years ago
  61. 8f358aa #10584: fix bad links. by Georg Brandl · 14 years ago
  62. 5e20bab Neaten-up a bit. by Raymond Hettinger · 14 years ago
  63. 7921b9f Issue 10220: switch to using string constants rather than integers for inspect.getgeneratorstate() return values and make debugging friendly str() and repr() for generator states a requirement in the test suite by Nick Coghlan · 14 years ago
  64. 234515a Issue 10586: change the new functools.lru_cache implementation to expose the maximum and current cache sizes through the public statistics API. This API is now a single function that returns a named tuple. by Nick Coghlan · 14 years ago
  65. ff27ee0 Issue #10572: Moved json tests to Lib/test/json_tests. by Alexander Belopolsky · 14 years ago
  66. 69b34bf Issue #10323: Predictable final state for slice(). by Raymond Hettinger · 14 years ago
  67. ac9a2bb Use booleans where applicable. by Georg Brandl · 14 years ago
  68. 2660747 Code style cleanup in bdb. by Georg Brandl · 14 years ago
  69. 8175dae Fix heading style inconsistencies. by Georg Brandl · 14 years ago
  70. 51be98a Fix indentation bug. by Georg Brandl · 14 years ago
  71. 3d0f388 Remove the comment used while testing. by Senthil Kumaran · 14 years ago
  72. 6f10704 Fix #10561 - Fix pdb behavior. Delete the breakpoints by breakpoint number. by Senthil Kumaran · 14 years ago
  73. ead2222 Issue #10565: Iterator ABC should require both __next__ and __iter__. by Raymond Hettinger · 14 years ago
  74. 263cbdf Use assertCountEqual instead of assertItemsEqual by Ezio Melotti · 14 years ago
  75. 40b8cf5 Do not add an obsolete unittest name to Py3.2. by Raymond Hettinger · 14 years ago
  76. fc889c4 Fix for #8879. by Brian Curtin · 14 years ago
  77. 1de9115 Add callable() to the built-in functions table. by Ezio Melotti · 14 years ago
  78. f6861ae there's now a setup.py switch for this by Benjamin Peterson · 14 years ago
  79. 2a7feee Windows: fix leak in posix_listdir. by Stefan Krah · 14 years ago
  80. e71362d Issue #10518: Bring back the callable() builtin. by Antoine Pitrou · 14 years ago
  81. dc9b17d Add version-added note twice for new difflib SequenceMatcher autojunk parameter. by Terry Reedy · 14 years ago
  82. a66e029 Make doc for PyErr_Format() up to date. by Antoine Pitrou · 14 years ago
  83. 34520cd Roumen Petrov's fix for when all paths are absolute. (Issue 10520) by Barry Warsaw · 14 years ago
  84. 30b341f Fix additional leaks. by Stefan Krah · 14 years ago
  85. 6e165b3 Issue 10242: unittest.assertItemsEqual makes too many assumptions. by Raymond Hettinger · 14 years ago
  86. db213a2 Replace _nbits() with int.bit_length(). by Raymond Hettinger · 14 years ago
  87. 76338ec Rewrap long lines + minor edits by Éric Araujo · 14 years ago
  88. 8acb67c Use link-generating markup (see #9312) by Éric Araujo · 14 years ago
  89. 1f75f5d Fixed deprecation warnings. by Alexander Belopolsky · 14 years ago
  90. 0e803b3 Further indentation cleanup. by Stefan Krah · 14 years ago
  91. 9943926 Issue #10383: Fix two leaks. by Stefan Krah · 14 years ago
  92. fe12390 Better example for os.system(): do not change the system time. by Georg Brandl · 14 years ago
  93. 326c57d Typo fix. by Georg Brandl · 14 years ago
  94. 62f52c4 Remove parenthetical remark that is confusing now that the module is not named "__builtin__" anymore. by Georg Brandl · 14 years ago
  95. f51a6c7 #10420: fix docs of bdb.effective(). by Georg Brandl · 14 years ago
  96. 9aed6cc Modernize code in effective(). by Georg Brandl · 14 years ago
  97. c877a7c Use PyLong_FromLong where appropriate. by Georg Brandl · 14 years ago
  98. 8449932 #10526: fix typo. by Georg Brandl · 14 years ago
  99. 735bb12 Indentation cleanup. by Stefan Krah · 14 years ago
  100. 67f953c s/colour/color/g by Senthil Kumaran · 14 years ago