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: Missing period in concurrent execution doc in standard library
Type: enhancement Stage: resolved
Components: Documentation Versions: Python 3.3, Python 3.4
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: ezio.melotti Nosy List: amysyk, docs@python, ezio.melotti, python-dev
Priority: normal Keywords: patch

Created on 2013-04-17 04:01 by amysyk, last changed 2022-04-11 14:57 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
mywork.patch amysyk, 2013-04-17 04:21 patch to add a missing period to concurrency.rst review
Messages (5)
msg187137 - (view) Author: Andriy Mysyk (amysyk) * Date: 2013-04-17 04:01
No period after the first sentence of the first paragraph in /Doc/build/html/library/concurrency.html.

"The appropriate choice of tool will depend on the task to be executed (CPU bound vs IO bound) and preferred style of development (event driven cooperative multitasking vs preemptive multitasking) Here’s an overview:"
msg187138 - (view) Author: Andriy Mysyk (amysyk) * Date: 2013-04-17 04:08
I will create a patch for this issue by Apr 23, 2013.
msg187141 - (view) Author: Andriy Mysyk (amysyk) * Date: 2013-04-17 04:21
Added a missing period to concurrency.rst
msg187142 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2013-04-17 04:34
New changeset 72b650a99b36 by Ezio Melotti in branch '3.3':
#17771: fix typo.  Patch by Andriy Mysyk.
http://hg.python.org/cpython/rev/72b650a99b36

New changeset 61a17d9e58e2 by Ezio Melotti in branch 'default':
#17771: merge with 3.3.
http://hg.python.org/cpython/rev/61a17d9e58e2
msg187143 - (view) Author: Ezio Melotti (ezio.melotti) * (Python committer) Date: 2013-04-17 04:35
Fixed, thanks for the report and the patch!
History
Date User Action Args
2022-04-11 14:57:44adminsetgithub: 61971
2013-04-17 04:35:36ezio.melottisetstatus: open -> closed

assignee: docs@python -> ezio.melotti
versions: + Python 3.3
nosy: + ezio.melotti

messages: + msg187143
resolution: fixed
stage: resolved
2013-04-17 04:34:56python-devsetnosy: + python-dev
messages: + msg187142
2013-04-17 04:32:34amysyksettype: enhancement
2013-04-17 04:21:03amysyksetfiles: + mywork.patch
type: enhancement -> (no value)
messages: + msg187141

keywords: + patch
2013-04-17 04:08:49amysyksetmessages: + msg187138
2013-04-17 04:01:31amysykcreate