• Home
  • Raw
  • Download

Lines Matching refs:Issue

4 - Issue #31855: :func:`unittest.mock.mock_open` results now respects the
31 - Issue #35226: Recursively check arguments when testing for equality of
36 - Issue #31177: Fix bug that prevented using :meth:`reset_mock
39 - Issue #26704: Added test demonstrating double-patching of an instance
42 - Issue #35500: Write expected and actual call parameters on separate lines
46 - Issue #35330: When a :class:`Mock` instance was used to wrap an object, if
51 - Issue #30541: Add new function to seal a mock and prevent the
54 - Issue #35022: :class:`unittest.mock.MagicMock` now supports the
57 - Issue #33516: :class:`unittest.mock.MagicMock` now supports the
60 - Issue #35512: :func:`unittest.mock.patch.dict` used as a decorator with
64 - Issue #36366: Calling ``stop()`` on an unstarted or stopped
69 - Issue #35357: Internal attributes' names of unittest.mock._Call and
74 - Issue #20239: Allow repeated assignment deletion of
77 - Issue #35082: Don't return deleted attributes when calling dir on a
80 - Issue #0: Improved an error message when mock assert_has_calls fails.
82 - Issue #23078: Add support for :func:`classmethod` and :func:`staticmethod`
85 - Issue #21478: Calls to a child function created with
89 - Issue #36598: Fix ``isinstance`` check for Mock objects with spec when the
92 - Issue #32933: :func:`unittest.mock.mock_open` now supports iteration over
95 - Issue #21269: Add ``args`` and ``kwargs`` properties to mock call objects.
98 - Issue #17185: Set ``__signature__`` on mock for :mod:`inspect` to get
101 - Issue #35047: ``unittest.mock`` now includes mock calls in exception
105 - Issue #28380: unittest.mock Mock autospec functions now properly support
108 - Issue #28735: Fixed the comparison of mock.MagickMock with mock.ANY.
110 - Issue #20804: The unittest.mock.sentinel attributes now preserve their
113 - Issue #28961: Fix unittest.mock._Call helper: don't ignore the name parameter
116 - Issue #26750: unittest.mock.create_autospec() now works properly for
119 - Issue #21271: New keyword only parameters in reset_mock call.
121 - Issue #26807: mock_open 'files' no longer error on readline at end of file.
124 - Issue #25195: Fix a regression in mock.MagicMock. _Call is a subclass of
131 - Issue #26323: Add Mock.assert_called() and Mock.assert_called_once()
134 - Issue #22138: Fix mock.patch behavior when patching descriptors. Restore
137 - Issue #24857: Comparing call_args to a long sequence now correctly returns a
140 - Issue #23004: mock_open() now reads binary data correctly when the type of
143 - Issue #21750: mock_open.read_data can now be read from each instance, as it
146 - Issue #18622: unittest.mock.mock_open().reset_mock would recurse infinitely.
149 - Issue #23661: unittest.mock side_effects can now be exceptions again. This
152 - Issue #23310: Fix MagicMock's initializer to work with __methods__, just
155 - Issue #23568: Add rdivmod support to MagicMock() objects.
158 - Issue #23581: Add matmul support to MagicMock. Patch by Håkan Lövdahl.
160 - Issue #23326: Removed __ne__ implementations. Since fixing default __ne__
163 - Issue #21270: We now override tuple methods in mock.call objects so that
166 - Issue #21256: Printout of keyword args should be in deterministic order in
169 - Issue #21262: New method assert_not_called for Mock.
172 - Issue #21238: New keyword argument `unsafe` to Mock. It raises
175 - Issue #21239: patch.stopall() didn't work deterministically when the same
178 - Issue #21222: Passing name keyword argument to mock.create_autospec now
181 - Issue #17826: setting an iterable side_effect on a mock function created by
184 - Issue #17826: setting an iterable side_effect on a mock function created by
187 - Issue #20968: unittest.mock.MagicMock now supports division.
190 - Issue #20189: unittest.mock now no longer assumes that any object for
194 - Issue #17467: add readline and readlines support to mock_open in
197 - Issue #17015: When it has a spec, a Mock object now inspects its signature
201 - Issue #15323: improve failure message of Mock.assert_called_once_with
203 - Issue #14857: fix regression in references to PEP 3135 implicit __class__
206 - Issue #14295: Add unittest.mock