[issue10446] pydoc3 links to 2.x library reference

2014-06-29 Thread Alexander Belopolsky
Alexander Belopolsky added the comment: MODULE DOCS section is no longer present in pydoc generated pages. -- resolution: accepted -> out of date status: open -> closed ___ Python tracker __

[issue10446] pydoc3 links to 2.x library reference

2011-06-09 Thread Éric Araujo
Éric Araujo added the comment: Can I help moving this forward? -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscrib

[issue10446] pydoc3 links to 2.x library reference

2010-11-17 Thread Alexander Belopolsky
Changes by Alexander Belopolsky : -- Removed message: http://bugs.python.org/msg121440 ___ Python tracker ___ ___ Python-bugs-list mai

[issue10446] pydoc3 links to 2.x library reference

2010-11-17 Thread Alexander Belopolsky
Alexander Belopolsky added the comment: On Wed, Nov 17, 2010 at 11:21 PM, Ron Adam wrote: .. > I noticed in your patch, the disclaimer only prints when pydoc can find a doc > location (docloc is not None). This is not a disclaimer, but an explanation of the relationship between pydoc pages an

[issue10446] pydoc3 links to 2.x library reference

2010-11-17 Thread Alexander Belopolsky
Alexander Belopolsky added the comment: On Wed, Nov 17, 2010 at 11:21 PM, Ron Adam wrote: .. > I noticed in your patch, the disclaimer only prints when pydoc can find a doc > location (docloc is not None). This is not a disclaimer, but an explanation of the relationship between pydoc pages an

[issue10446] pydoc3 links to 2.x library reference

2010-11-17 Thread Éric Araujo
Éric Araujo added the comment: > The point of this bug report was that 3.x pydoc was sending users to > 2.7, which is clearly unacceptable. Agreed. My reply about x.y vs. x.y+1 was a reaction to your patch, not a misunderstanding of the point of this bug. > As long as documentation bug fixes

[issue10446] pydoc3 links to 2.x library reference

2010-11-17 Thread Alexander Belopolsky
Alexander Belopolsky added the comment: On Wed, Nov 17, 2010 at 11:26 PM, Éric Araujo wrote: .. >> If there was say latest/X.Y, I would use that.  Wait - >> there is: docs.python.org/X.Y.  Would you prefer that? > My point was that people used 2.7 docs even when developing for 2.6. The point o

[issue10446] pydoc3 links to 2.x library reference

2010-11-17 Thread Éric Araujo
Éric Araujo added the comment: >> 1) I assume you have checked that this code does not produce two newlines >> (one in the string, >> one from the print function or write method): > Yes, it should be clear from the output that I presented above. Okay, I had missed that. > I think TextDoc.inde

[issue10446] pydoc3 links to 2.x library reference

2010-11-17 Thread Ron Adam
Ron Adam added the comment: I noticed in your patch, the disclaimer only prints when pydoc can find a doc location (docloc is not None). So it may not get displayed at all depending on how python is installed. I also think having it on every page may be a bit overly cautious. (IMHO) I'm al

[issue10446] pydoc3 links to 2.x library reference

2010-11-17 Thread Alexander Belopolsky
Alexander Belopolsky added the comment: Reopening to consider changing just the link (not other changes) in 2.7. At some point http://docs.python.org/library will point to 3.x and we get a bug in 2.7. -- status: closed -> open versions: +Python 2.7 -Python 3.1, Python 3.2 __

[issue10446] pydoc3 links to 2.x library reference

2010-11-17 Thread Alexander Belopolsky
Changes by Alexander Belopolsky : -- Removed message: http://bugs.python.org/msg121412 ___ Python tracker ___ ___ Python-bugs-list mai

[issue10446] pydoc3 links to 2.x library reference

2010-11-17 Thread Alexander Belopolsky
Changes by Alexander Belopolsky : -- Removed message: http://bugs.python.org/msg121414 ___ Python tracker ___ ___ Python-bugs-list mai

[issue10446] pydoc3 links to 2.x library reference

2010-11-17 Thread Alexander Belopolsky
Alexander Belopolsky added the comment: Committed in r86504 (3.2) and r86505 (3.1). -- ___ Python tracker ___ ___ Python-bugs-list ma

[issue10446] pydoc3 links to 2.x library reference

2010-11-17 Thread Alexander Belopolsky
Alexander Belopolsky added the comment: s/r86504 (3.1)/r86505 (3.1)/ -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsu

[issue10446] pydoc3 links to 2.x library reference

2010-11-17 Thread Alexander Belopolsky
Alexander Belopolsky added the comment: Committed in r86504 (3.2) and r86504 (3.1). -- resolution: -> accepted stage: patch review -> committed/rejected status: open -> closed ___ Python tracker _

[issue10446] pydoc3 links to 2.x library reference

2010-11-17 Thread Alexander Belopolsky
Alexander Belopolsky added the comment: On Wed, Nov 17, 2010 at 7:28 PM, Éric Araujo wrote: > > Éric Araujo added the comment: > > Looks good.  Some remarks: > > 1) I assume you have checked that this code does not produce two newlines > (one in the string, > one from the print function or wr

[issue10446] pydoc3 links to 2.x library reference

2010-11-17 Thread Éric Araujo
Éric Araujo added the comment: Looks good. Some remarks: 1) I assume you have checked that this code does not produce two newlines (one in the string, one from the print function or write method): +[snip], consult the module reference at the location listed above. +""") 2) “If you can sugges

[issue10446] pydoc3 links to 2.x library reference

2010-11-17 Thread Alexander Belopolsky
Changes by Alexander Belopolsky : -- stage: -> patch review ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: ht

[issue10446] pydoc3 links to 2.x library reference

2010-11-17 Thread Alexander Belopolsky
Alexander Belopolsky added the comment: The attached patch, issue10446.diff, makes help(sys) look as follows: NAME sys MODULE REFERENCE http://docs.python.org/release/3.2/library/sys The following documentation is automatically generated from the Python source files. It

[issue10446] pydoc3 links to 2.x library reference

2010-11-17 Thread Éric Araujo
Éric Araujo added the comment: +1 to Georg. Note that there are people that feel uncomfortable with calling packages modules, but not me. -- nosy: +eric.araujo ___ Python tracker

[issue10446] pydoc3 links to 2.x library reference

2010-11-17 Thread Georg Brandl
Georg Brandl added the comment: +1 to all. What about the best of both worlds: "MODULE REFERENCE"? -- nosy: +georg.brandl ___ Python tracker ___ ___

[issue10446] pydoc3 links to 2.x library reference

2010-11-17 Thread Alexander Belopolsky
Changes by Alexander Belopolsky : -- nosy: +d...@python ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://

[issue10446] pydoc3 links to 2.x library reference

2010-11-17 Thread Alexander Belopolsky
New submission from Alexander Belopolsky : $ pydoc3.1 pydoc Help on module pydoc: NAME pydoc - Generate Python documentation in HTML or text for interactive use. FILE /opt/local/Library/Frameworks/Python.framework/Versions/3.1/lib/python3.1/pydoc.py MODULE DOCS http://docs.python