[issue10385] Mark up "subprocess" as module in its doc

2012-11-08 Thread Ezio Melotti
Ezio Melotti added the comment: It looked OK and the :mod: role was already used throughout the page, so I applied the patch. -- assignee: belopolsky -> ezio.melotti resolution: -> fixed stage: commit review -> committed/rejected status: open -> closed type: -> enhancement versions: +

[issue10385] Mark up "subprocess" as module in its doc

2012-11-08 Thread Roundup Robot
Roundup Robot added the comment: New changeset 58564aeec8e4 by Ezio Melotti in branch '2.7': #10385: use the mod role in subprocess docs. http://hg.python.org/cpython/rev/58564aeec8e4 New changeset 8e8d391eb3eb by Ezio Melotti in branch '3.2': #10385: use the mod role in subprocess docs. http://

[issue10385] Mark up "subprocess" as module in its doc

2010-11-12 Thread Ezio Melotti
Ezio Melotti added the comment: I think that using e.g. :mod:`subprocess` in the subprocess page is redundant because there's no need to add a link to the page you are already reading. I'm also not sure that it looks too nice in the headers (iirc the font is different), but I haven't tried to

[issue10385] Mark up "subprocess" as module in its doc

2010-11-12 Thread Terry J. Reedy
Terry J. Reedy added the comment: >http://docs.python.org/dev/contents.html The only thing I see there is the bold-facing of *PEP 3101*. Is that what you are referring to? In any case, with Georg's concurrence go ahead with this and any other modules you care about. -- __

[issue10385] Mark up "subprocess" as module in its doc

2010-11-12 Thread Georg Brandl
Georg Brandl added the comment: Eric: any :mod: role never affects the index. Only the module directive does. Otherwise, I concur that it's not mandatory to mark up every occurrence of the module name, but it's nice in section headings. -- ___ Pyt

[issue10385] Mark up "subprocess" as module in its doc

2010-11-12 Thread Alexander Belopolsky
Alexander Belopolsky added the comment: On Fri, Nov 12, 2010 at 2:09 PM, Terry J. Reedy wrote: .. > 1. Does the markup make any visual difference? It does on my browser. (I wouldn't have noticed it otherwise.) See http://docs.python.org/dev/contents.html > 2. Does the markup affect the index

[issue10385] Mark up "subprocess" as module in its doc

2010-11-12 Thread Terry J. Reedy
Terry J. Reedy added the comment: 1. Does the markup make any visual difference? 2. Does the markup affect the index? 3. What do other module docs do? I notice that 'Tkinter' appears in several section headings. Is it marked? (Is the upper case a holdover that should be lowercased?) 'Turtle'

[issue10385] Mark up "subprocess" as module in its doc

2010-11-11 Thread Éric Araujo
Éric Araujo added the comment: Marking up each and every instance of a module name is not mandatory IMO. What’s important is that each document title starts with the :mod: construct, so that the HTML titles and index (at /library) be consistently useful. See for example ast (which also suff

[issue10385] Mark up "subprocess" as module in its doc

2010-11-11 Thread Alexander Belopolsky
New submission from Alexander Belopolsky : I was going to commit this patch, but decided to ask for a second opinion. I think module names in section titles should be marked up with :mod:. -- assignee: belopolsky components: Documentation files: subprocess-doc.diff keywords: patch mess