diff options
author | Zachary Ware <zachary.ware@gmail.com> | 2015-07-07 04:27:15 (GMT) |
---|---|---|
committer | Zachary Ware <zachary.ware@gmail.com> | 2015-07-07 04:27:15 (GMT) |
commit | 5c676f67d135bd09999ca4160c34be1f39051840 (patch) | |
tree | 593cae30376bdc72f36fd33e543b68180fb5c7ab /Doc/library/unittest.mock.rst | |
parent | ebbdb7d3d76d18b45c688b4a67811cd6701f82df (diff) | |
download | cpython-5c676f67d135bd09999ca4160c34be1f39051840.zip cpython-5c676f67d135bd09999ca4160c34be1f39051840.tar.gz cpython-5c676f67d135bd09999ca4160c34be1f39051840.tar.bz2 |
Fix suspicious markup
Diffstat (limited to 'Doc/library/unittest.mock.rst')
-rw-r--r-- | Doc/library/unittest.mock.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/unittest.mock.rst b/Doc/library/unittest.mock.rst index 91d5a27..70fe38a 100644 --- a/Doc/library/unittest.mock.rst +++ b/Doc/library/unittest.mock.rst @@ -1587,7 +1587,7 @@ The full list of supported magic methods is: * Context manager: ``__enter__`` and ``__exit__`` * Unary numeric methods: ``__neg__``, ``__pos__`` and ``__invert__`` * The numeric methods (including right hand and in-place variants): - ``__add__``, ``__sub__``, ``__mul__``, ``__div__``,``__truediv__``, + ``__add__``, ``__sub__``, ``__mul__``, ``__div__``, ``__truediv__``, ``__floordiv__``, ``__mod__``, ``__divmod__``, ``__lshift__``, ``__rshift__``, ``__and__``, ``__xor__``, ``__or__``, and ``__pow__`` * Numeric conversion methods: ``__complex__``, ``__int__``, ``__float__`` |