1. 0867420 add coverage reporting by Chris Withers · 6 years ago
  2. a5ed43f this also fails on pypy as per https://github.com/testing-cabal/mock/issues/452 by Chris Withers · 6 years ago
  3. 252c749 make magic mocks work on pypy again by Chris Withers · 6 years ago
  4. 0459be2 remove jython support for now, we can bring it back if there's demand by Chris Withers · 6 years ago
  5. 6ce5f0d move to .readthedocs.yml by Chris Withers · 6 years ago
  6. 40b44b1 latest sync point by Chris Withers · 6 years ago
  7. f0eb029 Mock 100% coverage (GH-13045) by Chris Withers · 6 years ago
  8. ed3bc8b remove jython support from unittest.mock (GH#13033) by Chris Withers · 6 years ago
  9. ab4a27e latest sync point by Chris Withers · 6 years ago
  10. e6fe351 Automate lastsync.txt maintenance. by Chris Withers · 6 years ago
  11. 137b4c5 Don't report deleted attributes in __dir__ (GH#10148) by Mario Corchero · 6 years ago
  12. 765defc Backports: d5d2b4546939b98244708e5bb0cfccd55b99d244, skipped: getfullargspec still needed for Python 2.7 by Chris Withers · 6 years ago
  13. f8e1a77 release script. by Chris Withers · 6 years ago
  14. b3bc87b version_info is more useful as a tuple of ints. by Chris Withers · 6 years ago
  15. 5792e6f Trim ready for the release script. by Chris Withers · 6 years ago
  16. 0e6229f move setup.cfg to current setuptools standards by Chris Withers · 6 years ago
  17. 657d9df fix python_requires spelling by Chris Withers · 6 years ago
  18. 4dcbc56 remove pbr and replace with simpler to understand and discover code. by Chris Withers · 6 years ago
  19. 8b83f7c Merge pull request #454 from hroncok/patch-1 by Chris Withers · 6 years ago
  20. d4f8a7f tox.ini: Typo (missing comma) by Miro Hrončok · 6 years ago
  21. b793c6a simplify and clean up docs by Chris Withers · 6 years ago
  22. a95dca5 record where 2.0.0 landed. by Chris Withers · 6 years ago
  23. 5e72ebe Deferring fixing this into https://github.com/testing-cabal/mock/issues/452 by Chris Withers · 6 years ago
  24. 5d0f584 latest sync point by Chris Withers · 6 years ago
  25. cee1b06 no subtest on Py2. by Chris Withers · 6 years ago
  26. 6039ff3 bpo-23078: Add support for {class,static}method to mock.create_autospec() (GH-11613) by Xtreak · 6 years ago
  27. 0e50d0d bpo-36593: Fix isinstance check for Mock objects with spec executed under tracing (GH-12790) by Xtreak · 6 years ago
  28. e07d77b bpo-36366: Return None on stopping unstarted patch object (GH-12472) by Xtreak · 6 years ago
  29. 19b9035 bpo-21269: Provide args and kwargs attributes on mock call objects GH11807 by Kumar Akshay · 6 years ago
  30. b5903d4 Autospec functions should propagate mock calls to parent GH-11273 by Xtreak · 6 years ago
  31. 5268eda bpo-35512: Resolve string target to patch.dict decorator during function call GH#12000 by Xtreak · 6 years ago
  32. 3830cd5 bpo-35500: align expected and actual calls on mock.assert_called_with error message. (GH-11804) by Susan Su · 6 years ago
  33. dde37a2 Py2-compatible super call by Chris Withers · 6 years ago
  34. 373301e bpo-20239: Allow repeated deletion of unittest.mock.Mock attributes (#11057) by Pablo Galindo · 6 years ago
  35. 019b1b5 Fix mock_open docstring to use readline (#11176) by Xtreak · 6 years ago
  36. 031ea76 These appear to be unsued. by Chris Withers · 6 years ago
  37. 2a31bd0 fix double patching on Py2. by Chris Withers · 6 years ago
  38. c86fadf Add test for double patching instance methods (#11085) by Anthony Sottile · 6 years ago
  39. 6611a75 Have to use the funcsigs backport on Py2. by Chris Withers · 6 years ago
  40. a2e00f4 move python 3-only code to its own file. by Chris Withers · 6 years ago
  41. 99b1b18 Flip to pytest so we can exclude files that won't parse on Py2. by Chris Withers · 6 years ago
  42. a7b0ba1 bpo-17185: Add __signature__ to mock that can be used by inspect for signature (GH11048) by Xtreak · 6 years ago
  43. 796edd4 bpo-35330: Don't call the wrapped object if `side_effect` is set (GH10973) by Mario Corchero · 6 years ago
  44. b1c060e bring uncache helper across from cpython by Chris Withers · 6 years ago
  45. 2a0b425 bpo-33747: Avoid mutating the global sys.modules dict in unittest.mock tests (GH-8520) by Anirudha Bose · 6 years ago
  46. e95565a Backports: 20428527a7c188d988d20b267cfef58da10b0fc9, skipped: it has no changes needed here. by Chris Withers · 6 years ago
  47. 7c85fb2 handle more news locations by Chris Withers · 6 years ago
  48. 962077b bpo-35357: Add _mock_ prefix to name/parent/from_kall attributes of _Call/_MagicProxy. (#10873) by Andrew Dunai · 6 years ago
  49. c052ed1 bpo-35226: Fix equality for nested unittest.mock.call objects. (#10555) by Chris Withers · 6 years ago
  50. c95a767 This needs to be a new-style class on Py2. by Chris Withers · 6 years ago
  51. b496c46 handle new news location by Chris Withers · 6 years ago
  52. 52b1ecb latest sync point by Chris Withers · 6 years ago
  53. 98f4fc4 bpo-32153: Add unit test for create_autospec with partial function returned in getattr (#10398) by Xtreak · 6 years ago
  54. 5a59329 bpo-31177: Skip deleted attributes while calling reset_mock (GH-9302) by Xtreak · 6 years ago
  55. 2df18d0 bpo-35133: Fix mistakes when concatenate string literals on different lines. (GH-10284) by Serhiy Storchaka · 6 years ago
  56. a137eb0 mention --skip-reason in backporting docs. by Chris Withers · 6 years ago
  57. d656380 python-2 spelling is assertRaisesRegexp by Chris Withers · 6 years ago
  58. 79e5a26 latest sync point by Chris Withers · 6 years ago
  59. 5522ca0 rewrite f-string. by Chris Withers · 6 years ago
  60. e684d67 backport note that f-strings should be re-written. by Chris Withers · 6 years ago
  61. 57ef3bb bpo-35047, unittest.mock: Better error messages on assert_called_xxx failures (GH-10090) by Petter Strandmark · 6 years ago
  62. 6065cab fspath added in 3.6 by Chris Withers · 6 years ago
  63. 5597129 bpo-35022: unittest.mock.MagicMock now also supports __fspath__ (GH-9960) by Max Bélanger · 6 years ago
  64. d42410a unittest.mock doc: Fix references to recursive seal of Mocks (GH-9028) by Mario Corchero · 6 years ago
  65. 3008b82 No 'yield from' in Python 2. by Chris Withers · 6 years ago
  66. 73f6eed bpo-32933: Implement __iter__ method on mock_open() (GH-5974) by Tony Flury · 6 years ago
  67. 94c3c57 Improve error message when mock.assert_has_calls fails (GH-8205) by davidair · 6 years ago
  68. b4579b9 Backports: 9d6d06e8065d45f375f4a80e2d7e13b032da1f5b, skipped: it has no changes needed here. by Chris Withers · 6 years ago
  69. 934177a In Python 2 round() and friends use __float__ first. by Chris Withers · 6 years ago
  70. 56cf6cb bpo-33516: Add support for __round__ in MagicMock (GH-6880) by John Reese · 6 years ago
  71. 6b7acf2 bpo-32297: Few misspellings found in Python source code comments. (#4803) by Mike · 7 years ago
  72. 3d7869b no f-strings in py2. by Chris Withers · 6 years ago
  73. d4469c6 fixup import by Chris Withers · 6 years ago
  74. 28e7566 only include stuff we're interested in when applying the patch by Chris Withers · 6 years ago
  75. 1879443 paranoid regex change by Chris Withers · 6 years ago
  76. 565b044 bpo-30541: Add new method to seal mocks (GH61923) by Mario Corchero · 7 years ago
  77. 8d313cc latest sync point by Chris Withers · 6 years ago
  78. f4bc081 put news items in a .d directory for now. by Chris Withers · 6 years ago
  79. c21fd35 Spelling fixes (#2902) by Ville Skyttä · 7 years ago
  80. 3860c79 Backports: 856cbcc12f2e4cca93af5dc7ed6bcea4dd942f10, skipped: code already present by Chris Withers · 6 years ago
  81. fa64f8b bpo-28961: Address my comments from earlier code review (#305) by Berker Peksag · 8 years ago
  82. 90058bf Backports: 0be894b2f6ca17204922399d6982f0b8a9dc59a1, skipped: Already handled before by Chris Withers · 6 years ago
  83. 431b268 Fixes issue28380: unittest.mock Mock autospec functions now properly support by Gregory P. Smith · 8 years ago
  84. 27e6f17 bpo-28911: Clarify the behaviour of assert_called_once_with. (#251) by Arne de Laat · 8 years ago
  85. 4f25a9b Record skips as backports so we can ignore them if they crop up in the git log command we're using again. by Chris Withers · 6 years ago
  86. d178d44 Issue #28735: Fixed the comparison of mock.MagickMock with mock.ANY. by Serhiy Storchaka · 8 years ago
  87. 637abcb Serhiy's approach didn't work on Python 2 or 3.4 by Chris Withers · 6 years ago
  88. b8e2399 python 2 has no subtest by Chris Withers · 6 years ago
  89. 5a0e779 Issue #20804: The unittest.mock.sentinel attributes now preserve their by Serhiy Storchaka · 8 years ago
  90. f9efc3e Fix unittest.mock._Call: don't ignore name by Victor Stinner · 8 years ago
  91. 8307e85 Backports: 161a4dd495dbf5cb12364e8f6e2d113cfd0633fc, skipped: code already in backport by Chris Withers · 6 years ago
  92. 5ee5062 skip ac5084b6c760ff5e6469854373fe6c3c81804f87, code already in backport by Chris Withers · 6 years ago
  93. a336518 add the ability to skip an unneeded patch. by Chris Withers · 6 years ago
  94. f6f3830 skip 0be894b2f6ca17204922399d6982f0b8a9dc59a1, it has no changes needed here. by Chris Withers · 6 years ago
  95. 4f0c247 empty file by Chris Withers · 6 years ago
  96. 1d1762e Issue #27895: Spelling fixes (Contributed by Ville Skyttä). by Raymond Hettinger · 8 years ago
  97. a7e2913 Issue #26750: use inspect.isdatadescriptor instead of our own by Gregory P. Smith · 8 years ago
  98. 76523d3 clarify this message by Chris Withers · 6 years ago
  99. 20f9d75 Issue #26750: unittest.mock.create_autospec() now works properly by Gregory P. Smith · 8 years ago
  100. 2f356b2 English spelling and grammar fixes by Martin Panter · 8 years ago