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 | |
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')
-rw-r--r-- | Doc/library/exceptions.rst | 2 | ||||
-rw-r--r-- | Doc/library/unittest.mock.rst | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/exceptions.rst b/Doc/library/exceptions.rst index ba6122e..5a71933 100644 --- a/Doc/library/exceptions.rst +++ b/Doc/library/exceptions.rst @@ -288,7 +288,7 @@ The following exceptions are the exceptions that are usually raised. .. versionchanged:: 3.3 :exc:`EnvironmentError`, :exc:`IOError`, :exc:`WindowsError`, - :exc:`VMSError`, :exc:`socket.error`, :exc:`select.error` and + :exc:`socket.error`, :exc:`select.error` and :exc:`mmap.error` have been merged into :exc:`OSError`, and the constructor may return a subclass. 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 |