This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: unittest.mock documentation typos
Type: Stage: resolved
Components: Documentation Versions: Python 3.3, Python 3.4
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: zach.ware Nosy List: Jurko.Gospodnetić, docs@python, python-dev, zach.ware
Priority: normal Keywords:

Created on 2014-02-24 09:39 by Jurko.Gospodnetić, last changed 2022-04-11 14:57 by admin. This issue is now closed.

Messages (5)
msg212079 - (view) Author: Jurko Gospodnetić (Jurko.Gospodnetić) * Date: 2014-02-24 09:39
Python unittest.mock documentation has typo:
  indvidually
instead of
  individually

Can be seen in the documentation source file at:

http://hg.python.org/releasing/3.4/file/c1f9fbefb237/Doc/library/unittest.mock-examples.rst#l429
msg212083 - (view) Author: Jurko Gospodnetić (Jurko.Gospodnetić) * Date: 2014-02-24 11:02
Another related documentation 'bug' - the following wording:

> Mock doesn’t create these but instead of raises an
> AttributeError.

should be changed to something like:

> Mock doesn’t create these on demand and raises an AttributeError
> instead.

Can be seen in the documentation source file at:

http://hg.python.org/releasing/3.4/file/c1f9fbefb237/Doc/library/unittest.mock.rst#l960
msg212085 - (view) Author: Jurko Gospodnetić (Jurko.Gospodnetić) * Date: 2014-02-24 11:14
And another one:
  'setttings'
should be spelled
  'settings'
in:

http://hg.python.org/releasing/3.4/file/c1f9fbefb237/Doc/library/unittest.mock.rst#l1512
msg212266 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2014-02-26 15:39
New changeset 045f048cc116 by Zachary Ware in branch '3.3':
Issue #20759: Fix some typos in the mock docs.
http://hg.python.org/cpython/rev/045f048cc116

New changeset 42ef1c82d645 by Zachary Ware in branch 'default':
Close #20759: Fix some typos in the mock docs. (Merge with 3.3)
http://hg.python.org/cpython/rev/42ef1c82d645
msg212267 - (view) Author: Zachary Ware (zach.ware) * (Python committer) Date: 2014-02-26 15:39
Thanks for the report!
History
Date User Action Args
2022-04-11 14:57:59adminsetgithub: 64958
2014-02-26 15:39:47zach.waresetassignee: docs@python -> zach.ware

messages: + msg212267
nosy: + zach.ware
2014-02-26 15:39:05python-devsetstatus: open -> closed

nosy: + python-dev
messages: + msg212266

resolution: fixed
stage: resolved
2014-02-24 11:14:27Jurko.Gospodnetićsetmessages: + msg212085
2014-02-24 11:02:19Jurko.Gospodnetićsetmessages: + msg212083
title: unittest.mock documentation typo -> unittest.mock documentation typos
2014-02-24 09:39:12Jurko.Gospodnetićcreate