[issue12243] getpass.getuser works on OSX

2016-06-01 Thread Roundup Robot
Roundup Robot added the comment: New changeset 98870f27d2ed by Berker Peksag in branch '2.7': Issue #12243: Remove redundant availability notes from getpass docs https://hg.python.org/cpython/rev/98870f27d2ed -- ___ Python tracker

[issue12243] getpass.getuser works on OSX

2016-06-01 Thread Berker Peksag
Berker Peksag added the comment: See issue 11233 for the availability directive patch. Thanks for the patch, Bryce. -- nosy: +berker.peksag resolution: -> fixed stage: -> resolved status: open -> closed type: -> behavior versions: +Python 3.6 -Python 3.4

[issue12243] getpass.getuser works on OSX

2016-06-01 Thread Roundup Robot
Roundup Robot added the comment: New changeset c13198a2007e by Berker Peksag in branch '3.5': Issue #12243: Remove redundant availability notes from getpass docs https://hg.python.org/cpython/rev/c13198a2007e New changeset 1bd3daae351d by Berker Peksag in branch 'default': Issue #12243: Merge fr

[issue12243] getpass.getuser works on OSX

2014-07-26 Thread Ronald Oussoren
Ronald Oussoren added the comment: The issue still is present, wouldn't it be better to just remove the availability annotation from the docs (2.7, 3.4 and trunk) while waiting for a better solution? That would at least remove confusion for these docs. At the very least the "Macintosh" avail

[issue12243] getpass.getuser works on OSX

2011-06-09 Thread Éric Araujo
Éric Araujo added the comment: That would be Doc/tools/sphinxext/pyspecific.py -- ___ Python tracker ___ ___ Python-bugs-list mailing

[issue12243] getpass.getuser works on OSX

2011-06-08 Thread R. David Murray
R. David Murray added the comment: It requires adding code to support a new Sphinx directive. I'm not sure if it should be a generic Sphinx directive (in which case we should open an issue on the Sphinx bug tracker) or Python specific. If the latter, I can't at the moment tell you where the

[issue12243] getpass.getuser works on OSX

2011-06-07 Thread Bryce Verdier
Bryce Verdier added the comment: I like the idea as well. But I'm not sure what is needed in order to help. -- ___ Python tracker ___ ___

[issue12243] getpass.getuser works on OSX

2011-06-03 Thread R. David Murray
R. David Murray added the comment: Georg: our post seem to have crossed despite Roundup's attempts at locking. +1 to your idea about the directive. -- ___ Python tracker ___ _

[issue12243] getpass.getuser works on OSX

2011-06-03 Thread R. David Murray
R. David Murray added the comment: Only because we had Macintosh in there. We don't mention OS/X explicitly anywhere else in the docs that I could find (except one prose mention in the logging docs). -- ___ Python tracker

[issue12243] getpass.getuser works on OSX

2011-06-03 Thread Georg Brandl
Georg Brandl added the comment: Well, let's make it clear then. What about replacing the text-only "Availability" with a directive that renders into a link that displays what the individual values mean? -- nosy: +georg.brandl ___ Python tracker <

[issue12243] getpass.getuser works on OSX

2011-06-03 Thread Éric Araujo
Éric Araujo added the comment: Yes, it’s unclear whether Unix in the docs included Mac OS X or not. -- nosy: +eric.araujo ___ Python tracker ___

[issue12243] getpass.getuser works on OSX

2011-06-02 Thread R. David Murray
R. David Murray added the comment: I think you are correct that the Availability can be removed, since the actual limits of the support are exactly as complicated as the code that supports them, and should give *some* result on most (all?) platforms. However, OS/X is certainly covered by the

[issue12243] getpass.getuser works on OSX

2011-06-02 Thread Bryce Verdier
New submission from Bryce Verdier : In the docs for getpass: http://docs.python.org/release/2.6.6/library/getpass.html (as an example). It hints that getuser() doesn't work on OSX. I tried this out and it works fine for python 2.6 on 10.6. I have included a patch for this. I believe the cleane