diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2013-12-24 09:05:24 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2013-12-24 09:05:24 (GMT) |
commit | 89e84e7523755faad1cc64ddb9f74a22a63135b1 (patch) | |
tree | 53a9c99c3fc2a4d6535b7b806beec5f26b06ca0a /Doc/library/unittest.mock.rst | |
parent | 7ceb378b8d65de833746145d279959198d199540 (diff) | |
parent | f47036c1309536c048890c265605b06daf7bdc9c (diff) | |
download | cpython-89e84e7523755faad1cc64ddb9f74a22a63135b1.zip cpython-89e84e7523755faad1cc64ddb9f74a22a63135b1.tar.gz cpython-89e84e7523755faad1cc64ddb9f74a22a63135b1.tar.bz2 |
Removed spaces before colons and semicolons.
Diffstat (limited to 'Doc/library/unittest.mock.rst')
-rw-r--r-- | Doc/library/unittest.mock.rst | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/Doc/library/unittest.mock.rst b/Doc/library/unittest.mock.rst index 135abeb..b5cf7b5 100644 --- a/Doc/library/unittest.mock.rst +++ b/Doc/library/unittest.mock.rst @@ -1652,17 +1652,17 @@ Methods and their defaults: * ``__gt__``: NotImplemented * ``__le__``: NotImplemented * ``__ge__``: NotImplemented -* ``__int__`` : 1 -* ``__contains__`` : False -* ``__len__`` : 1 -* ``__iter__`` : iter([]) -* ``__exit__`` : False -* ``__complex__`` : 1j -* ``__float__`` : 1.0 -* ``__bool__`` : True -* ``__index__`` : 1 -* ``__hash__`` : default hash for the mock -* ``__str__`` : default str for the mock +* ``__int__``: 1 +* ``__contains__``: False +* ``__len__``: 1 +* ``__iter__``: iter([]) +* ``__exit__``: False +* ``__complex__``: 1j +* ``__float__``: 1.0 +* ``__bool__``: True +* ``__index__``: 1 +* ``__hash__``: default hash for the mock +* ``__str__``: default str for the mock * ``__sizeof__``: default sizeof for the mock For example: |