diff options
author | Berker Peksag <berker.peksag@gmail.com> | 2016-04-11 09:23:04 (GMT) |
---|---|---|
committer | Berker Peksag <berker.peksag@gmail.com> | 2016-04-11 09:23:04 (GMT) |
commit | 8fafc74d45d2f6eba034ca0ff450adf12610ff18 (patch) | |
tree | 4d4acbb9a3f7c804a1e7e47421ca962f25f61ab2 /Doc/library/unittest.mock.rst | |
parent | 864b63c33f8f715121efeb9fce031f9c2534c27a (diff) | |
download | cpython-8fafc74d45d2f6eba034ca0ff450adf12610ff18.zip cpython-8fafc74d45d2f6eba034ca0ff450adf12610ff18.tar.gz cpython-8fafc74d45d2f6eba034ca0ff450adf12610ff18.tar.bz2 |
Fix typos in mock and exceptions docs
The default value of __len__ is 0, not 1:
>>> from unittest.mock import MagicMock
>>> mock = MagicMock()
>>> len(mock)
0
Reported by Alex on docs@p.o.
Remove the remaining VMSError reference. VMS support is gone.
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 9a51194..929cead 100644 --- a/Doc/library/unittest.mock.rst +++ b/Doc/library/unittest.mock.rst @@ -1697,7 +1697,7 @@ Methods and their defaults: * ``__ge__``: NotImplemented * ``__int__``: 1 * ``__contains__``: False -* ``__len__``: 1 +* ``__len__``: 0 * ``__iter__``: iter([]) * ``__exit__``: False * ``__complex__``: 1j |