[Python-checkins] cpython (3.3): Add a missing parenthesis.

brett.cannon python-checkins at python.org
Sat May 25 17:29:12 CEST 2013


http://hg.python.org/cpython/rev/b29c513c4fa5
changeset:   83925:b29c513c4fa5
branch:      3.3
parent:      83923:674005847047
user:        Brett Cannon <brett at python.org>
date:        Sat May 25 11:28:20 2013 -0400
summary:
  Add a missing parenthesis.

files:
  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
--- a/Doc/library/unittest.mock.rst
+++ b/Doc/library/unittest.mock.rst
@@ -468,7 +468,7 @@
         mock and unless the function returns the :data:`DEFAULT` singleton the
         call to the mock will then return whatever the function returns. If the
         function returns :data:`DEFAULT` then the mock will return its normal
-        value (from the :attr:`return_value`.
+        value (from the :attr:`return_value`).
 
         An example of a mock that raises an exception (to test exception
         handling of an API):

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list