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: random.seed docstring needs edit of "*a *is"
Type: Stage: resolved
Components: Library (Lib) Versions: Python 3.2, Python 3.3
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: eric.araujo, python-dev, sandro.tosi, smichr
Priority: normal Keywords:

Created on 2012-05-27 15:41 by smichr, last changed 2022-04-11 14:57 by admin. This issue is now closed.

Messages (5)
msg161709 - (view) Author: Christopher Smith (smichr) Date: 2012-05-27 15:41
In the following, the asterisk and space should change places so

  bits are used if *a *is a str,

would appear as 

  bits are used if *a* is a str,
msg162088 - (view) Author: Éric Araujo (eric.araujo) * (Python committer) Date: 2012-06-01 18:02
Thanks.  Have you noticed similar typos in the rest of the module, or the reST docs?
msg162097 - (view) Author: Christopher Smith (smichr) Date: 2012-06-01 18:30
On Fri, Jun 1, 2012 at 11:47 PM, Éric Araujo <report@bugs.python.org> wrote:
>
> Éric Araujo <merwok@netwok.org> added the comment:
>
> Thanks.  Have you noticed similar typos in the rest of the module, or the reST docs?

I grepped for orphaned asterisks, as I recall, and didn't find any others.

/c
msg162154 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2012-06-02 17:40
New changeset e2739145657d by Sandro Tosi in branch '3.2':
Issue #14926: fix docstring highlight
http://hg.python.org/cpython/rev/e2739145657d

New changeset 29148c027986 by Sandro Tosi in branch 'default':
Issue #14926: merge with 3.2
http://hg.python.org/cpython/rev/29148c027986
msg162155 - (view) Author: Sandro Tosi (sandro.tosi) * (Python committer) Date: 2012-06-02 17:41
Thanks Christopher!
History
Date User Action Args
2022-04-11 14:57:30adminsetgithub: 59131
2012-06-02 17:41:08sandro.tosisetstatus: open -> closed
versions: - Python 2.7
messages: + msg162155

resolution: fixed
stage: resolved
2012-06-02 17:40:43python-devsetnosy: + python-dev
messages: + msg162154
2012-06-01 18:30:15smichrsetmessages: + msg162097
2012-06-01 18:02:16eric.araujosetnosy: + eric.araujo, sandro.tosi

messages: + msg162088
versions: + Python 2.7, Python 3.3
2012-05-27 15:41:30smichrcreate