1. 830b43d bpo-36593: Fix isinstance check for Mock objects with spec executed under tracing (GH-12790) by Xtreak · 6 years ago
  2. 42a139e bpo-36492: Deprecate passing some arguments as keyword arguments. (GH-12637) by Serhiy Storchaka · 6 years ago
  3. 02b84cb bpo-36366: Return None on stopping unstarted patch object (GH-12472) by Xtreak · 6 years ago
  4. b0df45e bpo-21269: Provide args and kwargs attributes on mock call objects GH11807 by Kumar Akshay · 6 years ago
  5. 9c3f284 Autospec functions should propagate mock calls to parent GH-11273 by Xtreak · 6 years ago
  6. a875ea5 bpo-35512: Resolve string target to patch.dict decorator during function call GH#12000 by Xtreak · 6 years ago
  7. 2bdd585 bpo-35500: align expected and actual calls on mock.assert_called_with error message. (GH-11804) by Susan Su · 6 years ago
  8. fd628cf bpo-35767: Fix unittest.loader to allow partials as test_functions (#11600) by Jason Fried · 7 years ago
  9. 222d303 bpo-20239: Allow repeated deletion of unittest.mock.Mock attributes (#11057) by Pablo Galindo · 7 years ago
  10. 71f82a2 Fix mock_open docstring to use readline (#11176) by Xtreak · 7 years ago
  11. 8db5b54 bpo-35513, unittest: TextTestRunner uses time.perf_counter() (GH-11180) by Victor Stinner · 7 years ago
  12. 5a718e9 Add test for double patching instance methods (#11085) by Anthony Sottile · 7 years ago
  13. f7fa62e bpo-17185: Add __signature__ to mock that can be used by inspect for signature (GH11048) by Xtreak · 7 years ago
  14. f05df0a bpo-35330: Don't call the wrapped object if `side_effect` is set (GH10973) by Mario Corchero · 7 years ago
  15. 3cf7438 bpo-33747: Avoid mutating the global sys.modules dict in unittest.mock tests (GH-8520) by Anirudha Bose · 7 years ago
  16. 2042852 Remove unused function in `testmock/support.py` (GH-10975) by Mario Corchero · 7 years ago
  17. e63e617 bpo-35357: Add _mock_ prefix to name/parent/from_kall attributes of _Call/_MagicProxy. (#10873) by Andrew Dunai · 7 years ago
  18. 8ca0fa9 bpo-35226: Fix equality for nested unittest.mock.call objects. (#10555) by Chris Withers · 7 years ago
  19. c667b09 bpo-32153: Add unit test for create_autospec with partial function returned in getattr (#10398) by Xtreak · 7 years ago
  20. edeca92 bpo-31177: Skip deleted attributes while calling reset_mock (GH-9302) by Xtreak · 7 years ago
  21. b2774c8 Use assertEqual to fix DeprecationWarning. (GH-10794) by Xtreak · 7 years ago
  22. 0f221d0 bpo-24412: Adds cleanUps for setUpClass and setUpModule. (GH-9190) by Lisa Roach · 7 years ago
  23. 34fd4c2 bpo-35133: Fix mistakes when concatenate string literals on different lines. (GH-10284) by Serhiy Storchaka · 7 years ago
  24. 47d9424 bpo-35047, unittest.mock: Better error messages on assert_called_xxx failures (GH-10090) by Petter Strandmark · 7 years ago
  25. 6c83d9f bpo-35022: unittest.mock.MagicMock now also supports __fspath__ (GH-9960) by Max Bélanger · 7 years ago
  26. 96200eb unittest.mock doc: Fix references to recursive seal of Mocks (GH-9028) by Mario Corchero · 7 years ago
  27. da2bf9f bpo-34900: Make TestCase.debug() work with subtests (GH-9707) by Bruno Oliveira · 7 years ago
  28. 2087023 bpo-32933: Implement __iter__ method on mock_open() (GH-5974) by Tony Flury · 7 years ago
  29. 77d5781 bpo-34318: Convert deprecation warnings to errors in assertRaises() etc. (GH-8623) by Serhiy Storchaka · 7 years ago
  30. 2b32da2 Improve error message when mock.assert_has_calls fails (GH-8205) by davidair · 7 years ago
  31. fd8fbce bpo-33746: Fix test_unittest.testRegisterResult() in verbose mode (GH-7799) by Victor Stinner · 7 years ago
  32. 9d6d06e pypi.python.org -> pypi.org (GH-7613) by Ned Deily · 7 years ago
  33. 4ab4695 bpo-33748: fix tests altering sys.path and sys.modules (GH-7433) by Tal Einat · 7 years ago
  34. 6c4fab0 bpo-33516: Add support for __round__ in MagicMock (GH-6880) by John Reese · 7 years ago
  35. c3d9508 bpo-32746: Fix multiple typos (GH-5144) by Leo Arias · 8 years ago
  36. 018e1b7 bpo-32360: unittest.util: Use Counter instead of custom count function (GH-4994) by Srinivas Reddy Thatiparthy (శ్రీనివాస్ రెడ్డి తాటిపర్తి) · 8 years ago
  37. 13ff245 bpo-32593: Drop FreeBSD 9 and older support (#5232) by Victor Stinner · 8 years ago
  38. 53f7a7c bpo-32297: Few misspellings found in Python source code comments. (#4803) by Mike · 8 years ago
  39. 747f48e bpo-32230: Set sys.warnoptions with -X dev (#4820) by Victor Stinner · 8 years ago
  40. 4d193bc bpo-32071: Fix regression and add What's New entry (#4589) by Jonas Haag · 8 years ago
  41. 5b48dc6 bpo-32071: Add unittest -k option (#4496) by Jonas Haag · 8 years ago
  42. a5293b4 Fix miscellaneous typos (#4275) by luzpaz · 8 years ago
  43. 032a648 Update TestCase.assertAlmostEqual and assertNotAlmostEqual docstrings. (GH-3998) by Ron · 8 years ago
  44. 552be9d bpo-30541: Add new method to seal mocks (GH61923) by Mario Corchero · 8 years ago
  45. 0b5e61d bpo-30397: Add re.Pattern and re.Match. (#1646) by Serhiy Storchaka · 8 years ago
  46. 49b2734 Spelling fixes (#2902) by Ville Skyttä · 8 years ago
  47. 856cbcc bpo-29403: Fix mock's broken autospec behavior on method-bound builtin functions (GH-3) by Aaron Gallagher · 8 years ago
  48. e4f9a2d bpo-30813: Fix unittest when hunting refleaks (#2502) by Victor Stinner · 8 years ago
  49. 48fbe52 bpo-30664: The description of a unittest subtest now preserves the (#2265) by Serhiy Storchaka · 8 years ago
  50. c475095 #30190: fix invalid escape sequence warnings (#1534) by Giampaolo Rodola · 8 years ago
  51. 5d7a8d0 bpo-30190: improved error msg for assertAlmostEqual(delta=...) (#1331) by Giampaolo Rodola · 8 years ago
  52. f7e62cf bpo-30078: Add an example of passing a path to unittest (#1178) by Louie Lu · 8 years ago
  53. 55fe1ae bpo-30022: Get rid of using EnvironmentError and IOError (except test… (#1051) by Serhiy Storchaka · 8 years ago
  54. bbd3cf8 Fix ref cycles in TestCase.assertRaises() (#193) by Victor Stinner · 8 years ago
  55. d6debb2 bpo-29919: Remove unused imports found by pyflakes (#137) by Victor Stinner · 8 years ago
  56. 5aa3856 bpo-28961: Address my comments from earlier code review (#305) by Berker Peksag · 8 years ago
  57. 324c5d8 bpo-28911: Clarify the behaviour of assert_called_once_with. (#251) by Arne de Laat · 8 years ago
  58. 19dea2c Issue #28735: Fixed the comparison of mock.MagickMock with mock.ANY. by Serhiy Storchaka · 9 years ago
  59. a203360 Issue #28735: Fixed the comparison of mock.MagickMock with mock.ANY. by Serhiy Storchaka · 9 years ago
  60. 362f058 Issue #28735: Fixed the comparison of mock.MagickMock with mock.ANY. by Serhiy Storchaka · 9 years ago
  61. 9722d7f Issue 29274: Merge doc fixes from 3.6 by Martin Panter · 9 years ago
  62. 4710935 Issue 29274: Merge doc fixes from 3.5 by Martin Panter · 9 years ago
  63. 37f183d Issue #29274: tests cases → test cases by Martin Panter · 9 years ago
  64. d9c956f Issue #20804: The unittest.mock.sentinel attributes now preserve their by Serhiy Storchaka · 9 years ago
  65. cd992bb Merge 3.6 by Victor Stinner · 9 years ago
  66. 84b6fb0 Fix unittest.mock._Call: don't ignore name by Victor Stinner · 9 years ago
  67. 161a4dd Issue #28919: Simplify _copy_func_details() in unittest.mock by Berker Peksag · 9 years ago
  68. ac5084b Fixes issue28380: unittest.mock Mock autospec functions now properly support by Gregory P. Smith · 9 years ago
  69. eadf443 Issue #28303: Merge from 3.5 by Berker Peksag · 9 years ago
  70. aa5c2fd Issue #28303: Fix grammar in unittest.__doc__, patch by Shlomi Fish by Berker Peksag · 9 years ago
  71. b3d4e7f Issue #25651: Merge from 3.5 by Berker Peksag · 9 years ago
  72. 16ea19f Issue #25651: Allow falsy values to be used for msg parameter of subTest() by Berker Peksag · 9 years ago
  73. 0be894b Issue #27895: Spelling fixes (Contributed by Ville Skyttä). by Martin Panter · 9 years ago
  74. 44b548d #27364: fix "incorrect" uses of escape character in the stdlib. by R David Murray · 9 years ago
  75. 15f44ab Issue #27895: Spelling fixes (Contributed by Ville Skyttä). by Raymond Hettinger · 9 years ago
  76. f74c33a Merge by Raymond Hettinger · 9 years ago
  77. 7ea386e Issue 19504: Change "customise" to "customize" American spelling. by Raymond Hettinger · 9 years ago
  78. c35a32f Issue #26750: use inspect.isdatadescriptor instead of our own by Gregory P. Smith · 9 years ago
  79. d4583d7 Issue #26750: use inspect.isdatadescriptor instead of our own by Gregory P. Smith · 9 years ago
  80. d0d24fd Issue #26750: unittest.mock.create_autospec() now works properly for by Gregory P. Smith · 9 years ago
  81. 9854789 Issue #26750: unittest.mock.create_autospec() now works properly by Gregory P. Smith · 9 years ago
  82. 8bde911 Issue #27626: Merge spelling fixes from 3.5 by Martin Panter · 9 years ago
  83. eb99570 Issue #27626: Spelling fixes in docs, comments and internal names by Martin Panter · 9 years ago
  84. 702f4f5 Issue #23804: Merge spelling and NEWS fixes from 3.5 by Martin Panter · 9 years ago
  85. 204bf0b English spelling and grammar fixes by Martin Panter · 9 years ago
  86. a9e1ebb Issue #27430: Merge from 3.5 by Berker Peksag · 9 years ago
  87. e39682b Issue #27430: Fix typos, patch by scop. by Berker Peksag · 9 years ago
  88. 6c85091 Issue #23641: Added __getnewargs_ex__ to the list of special mock attributes. by Serhiy Storchaka · 9 years ago
  89. 5943ea7 Issue #23641: Added __getnewargs_ex__ to the list of special mock attributes. by Serhiy Storchaka · 9 years ago
  90. 9cd39a1 Issue #21271: Adds new keyword only parameters in reset_mock call by Kushal Das · 9 years ago
  91. 0b7d84d Issue #27171: Merge typo fixes from 3.5 by Martin Panter · 9 years ago
  92. e26da7c Issue #27171: Fix typos in documentation, comments, and test function names by Martin Panter · 9 years ago
  93. 3e04d5b Issue #27076: Merge spelling from 3.5 by Martin Panter · 9 years ago
  94. 46f5072 Issue #27076: Doc, comment and tests spelling fixes by Martin Panter · 9 years ago
  95. 742206d Issue #27063: Some unittest loader tests were silently skipped. by Serhiy Storchaka · 9 years ago
  96. 0dad755 Issue #27063: Some unittest loader tests were silently skipped. by Serhiy Storchaka · 9 years ago
  97. c85dd85 Issue #26807: mock_open 'files' no longer error on readline at end of file. by Robert Collins · 9 years ago
  98. 9549a3e Issue #26807: mock_open 'files' no longer error on readline at end of file. by Robert Collins · 9 years ago
  99. 81e7f94 Merge 3.5 by Serhiy Storchaka · 9 years ago
  100. 685fbed Issue #26837: assertSequenceEqual() now correctly outputs non-stringified by Serhiy Storchaka · 9 years ago