Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
76d508b5
Commit
76d508b5
authored
Jul 15, 2015
by
Robert Collins
Browse files
Options
Browse Files
Download
Plain Diff
- Issue #18622: unittest.mock.mock_open().reset_mock would recurse infinitely.
Patch from Nicola Palumbo and Laurent De Buyst.
parents
f58f88c4
b37f43f9
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
17 additions
and
3 deletions
+17
-3
Lib/unittest/mock.py
Lib/unittest/mock.py
+9
-3
Lib/unittest/test/testmock/testmock.py
Lib/unittest/test/testmock/testmock.py
+3
-0
Misc/ACKS
Misc/ACKS
+2
-0
Misc/NEWS
Misc/NEWS
+3
-0
No files found.
Lib/unittest/mock.py
View file @
76d508b5
...
...
@@ -523,8 +523,14 @@ class NonCallableMock(Base):
side_effect
=
property
(
__get_side_effect
,
__set_side_effect
)
def
reset_mock
(
self
):
def
reset_mock
(
self
,
visited
=
None
):
"Restore the mock object to its initial state."
if
visited
is
None
:
visited
=
[]
if
id
(
self
)
in
visited
:
return
visited
.
append
(
id
(
self
))
self
.
called
=
False
self
.
call_args
=
None
self
.
call_count
=
0
...
...
@@ -535,11 +541,11 @@ class NonCallableMock(Base):
for
child
in
self
.
_mock_children
.
values
():
if
isinstance
(
child
,
_SpecState
):
continue
child
.
reset_mock
()
child
.
reset_mock
(
visited
)
ret
=
self
.
_mock_return_value
if
_is_instance_mock
(
ret
)
and
ret
is
not
self
:
ret
.
reset_mock
()
ret
.
reset_mock
(
visited
)
def
configure_mock
(
self
,
**
kwargs
):
...
...
Lib/unittest/test/testmock/testmock.py
View file @
76d508b5
...
...
@@ -246,6 +246,9 @@ class MockTest(unittest.TestCase):
# used to cause recursion
mock
.
reset_mock
()
def
test_reset_mock_on_mock_open_issue_18622
(
self
):
a
=
mock
.
mock_open
()
a
.
reset_mock
()
def
test_call
(
self
):
mock
=
Mock
()
...
...
Misc/ACKS
View file @
76d508b5
...
...
@@ -1582,3 +1582,5 @@ Gennadiy Zlobin
Doug Zongker
Peter Åstrand
Ignacio Rossi
Laurent De Buyst
Nicola Palumbo
Misc/NEWS
View file @
76d508b5
...
...
@@ -17,6 +17,9 @@ Core and Builtins
Library
-------
- Issue #18622: unittest.mock.mock_open().reset_mock would recurse infinitely.
Patch from Nicola Palumbo and Laurent De Buyst.
- Issue #23661: unittest.mock side_effects can now be exceptions again. This
was a regression vs Python 3.4. Patch from Ignacio Rossi
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment