mirror of
https://github.com/python/cpython.git
synced 2025-08-03 16:39:00 +00:00
Issue #20759: Fix some typos in the mock docs.
This commit is contained in:
parent
7b80716cff
commit
5ea5d2c3f7
2 changed files with 3 additions and 3 deletions
|
@ -938,7 +938,7 @@ method:
|
|||
|
||||
.. [#] The only exceptions are magic methods and attributes (those that have
|
||||
leading and trailing double underscores). Mock doesn't create these but
|
||||
instead of raises an ``AttributeError``. This is because the interpreter
|
||||
instead raises an ``AttributeError``. This is because the interpreter
|
||||
will often implicitly request these methods, and gets *very* confused to
|
||||
get a new Mock object when it expects a magic method. If you need magic
|
||||
method support see :ref:`magic methods <magic-methods>`.
|
||||
|
@ -1489,7 +1489,7 @@ Patching Descriptors and Proxy Objects
|
|||
Both patch_ and patch.object_ correctly patch and restore descriptors: class
|
||||
methods, static methods and properties. You should patch these on the *class*
|
||||
rather than an instance. They also work with *some* objects
|
||||
that proxy attribute access, like the `django setttings object
|
||||
that proxy attribute access, like the `django settings object
|
||||
<http://www.voidspace.org.uk/python/weblog/arch_d7_2010_12_04.shtml#e1198>`_.
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue