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: Fix small gramatical error and add reference link in hashlib documentation
Type: Stage: resolved
Components: Documentation Versions: Python 3.3, Python 3.4
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: docs@python Nosy List: docs@python, jeffknupp, python-dev
Priority: normal Keywords:

Created on 2012-12-14 20:55 by jeffknupp, last changed 2022-04-11 14:57 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
new_patch.txt jeffknupp, 2012-12-20 19:48 review
Messages (3)
msg177507 - (view) Author: Jeff Knupp (jeffknupp) * Date: 2012-12-14 20:55
Original text is: 

> Feeding string objects is to update is not supported

Should be "... objects in to update" instead of "is to"

Also, mark "GIL" as a :term: to provide a link to its definition, as it's used without much context in the following note:

> .. note::
>
>   For better multithreading performance, the Python :term:`GIL` is 
>   released for strings of more than 2047 bytes at object creation or
>   on update.
msg177857 - (view) Author: Jeff Knupp (jeffknupp) * Date: 2012-12-20 19:48
Previous patch had unintentional local changes. Uploaded correct patch.
msg177864 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2012-12-21 02:25
New changeset abfd3bc38b5d by Benjamin Peterson in branch '3.3':
fix typo (#16687)
http://hg.python.org/cpython/rev/abfd3bc38b5d

New changeset 95cb2f09ac50 by Benjamin Peterson in branch 'default':
merge 3.3 (closes #16687)
http://hg.python.org/cpython/rev/95cb2f09ac50
History
Date User Action Args
2022-04-11 14:57:39adminsetgithub: 60891
2012-12-21 02:25:18python-devsetstatus: open -> closed

nosy: + python-dev
messages: + msg177864

resolution: fixed
stage: resolved
2012-12-21 02:20:16benjamin.petersonsetversions: + Python 3.3, Python 3.4, - Python 3.5
2012-12-20 19:48:45jeffknuppsetfiles: - patch.txt
2012-12-20 19:48:21jeffknuppsetfiles: + new_patch.txt

messages: + msg177857
2012-12-14 20:55:54jeffknuppcreate