1. d65c949 Issue #25523: Further a-to-an corrections. by Serhiy Storchaka · 9 years ago
  2. 0424eaf Marked keystrokes with the :kbd: role. Fixed the case of the "Ctrl-" prefixes. by Serhiy Storchaka · 9 years ago
  3. a2b0055 Issue #22812: Fix unittest discovery examples. by Robert Collins · 9 years ago
  4. e02f6c2 Issue #22153: Improve unittest docs. Patch from Martin Panter and evilzero. by Robert Collins · 9 years ago
  5. a1005ed #24584: replace dead link with pointer to archive.org. by R David Murray · 9 years ago
  6. 2e3998f #11468: improve unittest basic example. Initial patch by Florian Preinstorfer. by Ezio Melotti · 9 years ago
  7. a1a1409 Issue #23125: Update nose project page link. by Berker Peksag · 10 years ago
  8. 525d355 Fixing broken links in doc, part 3: the rest by Georg Brandl · 10 years ago
  9. e73778c Use https:// URLs when referring to python.org hosts. by Georg Brandl · 10 years ago
  10. 3f1ef9e Closes #18729: minor markup improvement. by Georg Brandl · 10 years ago
  11. 7f84d1e #18566: Whitespace by Terry Jan Reedy · 10 years ago
  12. 6ac4240 Issue #18566: Clarify unittest setUp, tearDown doc. Patch by Nitika Agarwal. by Terry Jan Reedy · 10 years ago
  13. f98021c Issue #21170: Removed invalid parameter names from unittest doc. by Terry Jan Reedy · 10 years ago
  14. 3732ed2 Merge in all documentation changes since branching 3.4.0rc1. by Larry Hastings · 10 years ago
  15. ad88d7a Python 3.4.0rc1 release: Updated pydoc topics, fixed suspicious markup errors. by Larry Hastings · 10 years ago
  16. 1272426 merge from 3.3 by Senthil Kumaran · 10 years ago
  17. 409ea5d Include the mention of ResourceWarning being displayed by default by the test runner. by Senthil Kumaran · 10 years ago
  18. 5a6d4bf Fixes Issue #20165: The unittest module no longer considers tests marked with by Gregory P. Smith · 10 years ago
  19. 42fa110 whatsnew: unittest import time SkipTest reported as skip not error. by R David Murray · 11 years ago
  20. 12e930f #17282: Document unittest.main defaultTest argument. by R David Murray · 11 years ago
  21. 6e731b0 Merge and update #17282: Document unittest.main defaultTest argument. by R David Murray · 11 years ago
  22. 4d1639f Closes issue 20031. Document unittest.TextTestRunner.run method. by Michael Foord · 11 years ago
  23. ed007d5 Fix suspicious markup in the docs. by Georg Brandl · 11 years ago
  24. 7c89ae2 Address Terry's comments by Antoine Pitrou · 11 years ago
  25. 0715b9f Issue #18937: Add an assertLogs() context manager to unittest.TestCase to ensure that a block of code emits a message using the logging module. by Antoine Pitrou · 11 years ago
  26. 92ed890 #18951: merge with 3.3. by Ezio Melotti · 11 years ago
  27. 560a778 #18951: use consistent names in unittest docs. by Ezio Melotti · 11 years ago
  28. 84eadd8 #18895: merge with 3.3. by Ezio Melotti · 11 years ago
  29. e64a91a #18895: split a sentence in unittest docs. by Ezio Melotti · 11 years ago
  30. 0cd9442 #18894: merge with 3.3. by Ezio Melotti · 11 years ago
  31. e220236 #18894: remove mention of deprecated fail* methods. by Ezio Melotti · 11 years ago
  32. eb97368 Issue #11798: TestSuite now drops references to own tests after execution. by Andrew Svetlov · 11 years ago
  33. b2855cc #18663: merge with 3.3. by Ezio Melotti · 11 years ago
  34. d51914c #18663: document that assertAlmostEqual also works when the values are equal and add tests. by Ezio Melotti · 11 years ago
  35. 92e2a22 Merge with 3.3 by Terry Jan Reedy · 11 years ago
  36. 778cba7 Issue #18573: More copy-paste fixes to assertWarns entry. by Terry Jan Reedy · 11 years ago
  37. 937b50c Merge with 3.3 by Terry Jan Reedy · 11 years ago
  38. 9eda66d Issue #18573: Complete copy-paste from assertRaises entry to assertWarns entry. by Terry Jan Reedy · 11 years ago
  39. b7bb6f5 Merge with 3.3 by Terry Jan Reedy · 11 years ago
  40. c4565a9 Issue #18237: Fix assertRaisesRegexp error caought by Jeff Tratner. by Terry Jan Reedy · 11 years ago
  41. 7168879 #17871: merge with 3.3. by Ezio Melotti · 11 years ago
  42. 9c939bc #17871: fix unittest.TextTestRunner signature in the docs. Patch by Yogesh Chaudhari. by Ezio Melotti · 11 years ago
  43. 67ddcca #17329: merge with 3.3. by Ezio Melotti · 11 years ago
  44. 184e593 #17329: merge with 3.2. by Ezio Melotti · 11 years ago
  45. 265281a #17329: document unittest.SkipTest. Initial patch by Zachary Ware. by Ezio Melotti · 11 years ago
  46. c9b3ef2 Issue #16997: unittest.TestCase now provides a subTest() context manager to procedurally generate, in an easy way, small test instances. by Antoine Pitrou · 11 years ago
  47. 80cbc9e Closes issue 16709. unittest test discovery sorts test files for consistent test ordering by Michael Foord · 11 years ago
  48. bf0428e Merge markup fixes in unittest doc from 3.3. by Ezio Melotti · 11 years ago
  49. aba4581 Merge markup fixes in unittest doc from 3.2. by Ezio Melotti · 11 years ago
  50. fed69ba Fix markup in unittest doc. by Ezio Melotti · 11 years ago
  51. eae2b38 #16935: unittest now counts the module as skipped if it raises SkipTest, instead of counting it as an error. Patch by Zachary Ware. by Ezio Melotti · 11 years ago
  52. 26db85b Merge markup fixes in unittest docs from 3.3. by Ezio Melotti · 11 years ago
  53. df24605 Merge markup fixes in unittest docs from 3.2. by Ezio Melotti · 11 years ago
  54. 4d6cb0f Fix markup in unittest docs. by Ezio Melotti · 11 years ago
  55. ccbc26a Add a "Changed in version" to the docs for issue #15132. by Chris Jerdonek · 11 years ago
  56. 8c0bbfd Issue #17203: add long option names to unittest discovery docs. by Chris Jerdonek · 11 years ago
  57. d69ad55 Issue #17203: add long option names to unittest discovery docs. by Chris Jerdonek · 11 years ago
  58. 2c5e950 Remove cruft and circumvolutions from the unittest docs. by Antoine Pitrou · 11 years ago
  59. 0b3014d merge from 3.2 by Senthil Kumaran · 12 years ago
  60. 847c33c Include mention of jenkins as an example framework for doing CI by Senthil Kumaran · 12 years ago
  61. 75883ad Add missing comma. by Ezio Melotti · 12 years ago
  62. 49ccd51 Add missing comma. by Ezio Melotti · 12 years ago
  63. cfc104e #14558: merge with 3.2. by Ezio Melotti · 12 years ago
  64. 3d6d7a5 #14558: document the module, argv, and testLoader args of unittest.main. by Ezio Melotti · 12 years ago
  65. 5fbd37e Merge markup fix in unittest doc from 3.2. by Ezio Melotti · 12 years ago
  66. b8e336b Fix markup in unittest doc. by Ezio Melotti · 12 years ago
  67. 4cc229a merge with 3.2 by Sandro Tosi · 12 years ago
  68. 317075d use unittest.skip; thanks to Chang Min Jeon from docs@ by Sandro Tosi · 12 years ago
  69. 13ec112 Issue #13248: Removed docs for two deprecated unittest features. To be conservative, the code is left in for one more release. by Raymond Hettinger · 12 years ago
  70. a2a9071 merge with 3.2 by Sandro Tosi · 12 years ago
  71. 41b2404 fix typo; thanks to Justin Watt from docs@ by Sandro Tosi · 12 years ago
  72. 37c7a06 #13695: merge with 3.2. by Ezio Melotti · 12 years ago
  73. 9ecb6be #13695: fix a couple of typos in the doc. by Ezio Melotti · 12 years ago
  74. 80a61e8 #13387: rephrase unclear sentence. by Ezio Melotti · 13 years ago
  75. 5ce6f8e #13387: merge with 3.2. by Ezio Melotti · 13 years ago
  76. 2251a3d #13387: merge with 3.2. by Ezio Melotti · 13 years ago
  77. fabf027 #13387: add note about checking the exact type in assertIsInstance doc. by Ezio Melotti · 13 years ago
  78. b8edbdf Merge doc changes from 3.2. by Éric Araujo · 13 years ago
  79. ec9a5f6 Add version number for versionchanged directive (backport from 3.3) by Éric Araujo · 13 years ago
  80. 941afed Avoid using the default reST role. Makes Doc/tools/rstlint.py happy. by Éric Araujo · 13 years ago
  81. b4dc250 Issue #10775: assertRaises, assertRaisesRegex, assertWarns, and assertWarnsRegex now accept a keyword argument 'msg' when used as context managers. Initial patch by Winston Ewert. by Ezio Melotti · 13 years ago
  82. b7af620 #11282: merge with 3.2. by Ezio Melotti · 13 years ago
  83. 361467e #11282: the fail* methods will stay around a few more versions. by Ezio Melotti · 13 years ago
  84. 40dcb1d Port a couple of changes from 3.1. by Ezio Melotti · 13 years ago
  85. 2d1e88a Backport from 3.2 several improvements and fixes for unittest.rst. by Ezio Melotti · 13 years ago
  86. 3d99584 #11298: Improve the unittest discovery explanation. by Ezio Melotti · 13 years ago
  87. 1341bb0 Closes issue 11407. TestCase.run returns the result object used or created by Michael Foord · 13 years ago
  88. 833ad0e Fix awkwardly rendered sentence. by Raymond Hettinger · 13 years ago
  89. e180d39 Issue 10573: revert unittest docs to first / second by Michael Foord · 13 years ago
  90. 32e1d83 Enable unittest.TestCase to be instantiated without providing a method name. by Michael Foord · 14 years ago
  91. 90efac7 Issue 10502: addition of unittestgui to Tools/ by Michael Foord · 14 years ago
  92. d218e95 Issue 10786: unittest documentation update. by Michael Foord · 14 years ago
  93. 57bd00a Adopt symmetric names for arguments (actual/expected --> first/second). by Raymond Hettinger · 14 years ago
  94. 6518f5e Fix docs and comment for r87454. by Raymond Hettinger · 14 years ago
  95. 8ebe27f Deprecate assertDictContainsSubset() by Raymond Hettinger · 14 years ago
  96. addc6f5 #10573: use actual/expected consistently in unittest methods. The order of the args of assertCountEqual is also changed. by Ezio Melotti · 14 years ago
  97. 3efdf06 Merged revisions 86521,86632,86823-86824,87294,87296,87300,87302 via svnmerge from by Éric Araujo · 14 years ago
  98. 971dc01 Fix one versionchanged by Éric Araujo · 14 years ago
  99. d6c5f74 No need to generate a link for something that’s just above. by Éric Araujo · 14 years ago
  100. 4640237 Fix markup errors. by Georg Brandl · 14 years ago