summaryrefslogtreecommitdiff
path: root/Doc/library/unittest.mock.rst
diff options
context:
space:
mode:
authorTerry Jan Reedy <tjreedy@udel.edu>2013-03-11 18:34:00 -0400
committerTerry Jan Reedy <tjreedy@udel.edu>2013-03-11 18:34:00 -0400
commit0f84764a09401bb93f544141a433db5acd751dd2 (patch)
tree738adf0e585f39a92f5f3b414fc3feeab636e196 /Doc/library/unittest.mock.rst
parent98472b839674a78b0cbb09f50a61f70019591a4a (diff)
downloadcpython-git-0f84764a09401bb93f544141a433db5acd751dd2.tar.gz
Issue #17047: remove doubled words added in 3.3
as reported by Serhiy Storchaka and Matthew Barnett.
Diffstat (limited to 'Doc/library/unittest.mock.rst')
-rw-r--r--Doc/library/unittest.mock.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/unittest.mock.rst b/Doc/library/unittest.mock.rst
index dc6ca1b1c7..ec316dbdb8 100644
--- a/Doc/library/unittest.mock.rst
+++ b/Doc/library/unittest.mock.rst
@@ -988,7 +988,7 @@ patch
you pass in `create=True`, and the attribute doesn't exist, patch will
create the attribute for you when the patched function is called, and
delete it again afterwards. This is useful for writing tests against
- attributes that your production code creates at runtime. It is off by by
+ attributes that your production code creates at runtime. It is off by
default because it can be dangerous. With it switched on you can write
passing tests against APIs that don't actually exist!