Kaydet (Commit) 85ac726a authored tarafından Paul Ganssle's avatar Paul Ganssle Kaydeden (comit) Andrew Svetlov

Cleanup grammar in unittest.mock.seal documentation (#5107)

üst 9f1e5f1b
...@@ -2370,12 +2370,12 @@ Sealing mocks ...@@ -2370,12 +2370,12 @@ Sealing mocks
.. function:: seal(mock) .. function:: seal(mock)
Seal will disable the creation of mock children by preventing to get or set Seal will disable the creation of mock children by preventing getting or setting
any new attribute on the sealed mock. The sealing process is performed recursively. of any new attribute on the sealed mock. The sealing process is performed recursively.
If a mock instance is assigned to an attribute instead of being dynamically created If a mock instance is assigned to an attribute instead of being dynamically created
it won't be considered in the sealing chain. This allows to prevent seal from fixing it won't be considered in the sealing chain. This allows one to prevent seal from
part of the mock object. fixing part of the mock object.
>>> mock = Mock() >>> mock = Mock()
>>> mock.submock.attribute1 = 2 >>> mock.submock.attribute1 = 2
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment