diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2013-12-24 11:04:36 +0200 |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2013-12-24 11:04:36 +0200 |
commit | f47036c1309536c048890c265605b06daf7bdc9c (patch) | |
tree | e6df0e6a342b66183d5924c97667c14c42cb2ff7 /Doc/library/unittest.mock.rst | |
parent | 55c6cc408c56f586c4826c1d9639a5f4635c021c (diff) | |
download | cpython-git-f47036c1309536c048890c265605b06daf7bdc9c.tar.gz |
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 0243d7f84c..6b9805c23f 100644 --- a/Doc/library/unittest.mock.rst +++ b/Doc/library/unittest.mock.rst @@ -1632,17 +1632,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: |