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.

Author janglin
Recipients brian.curtin, janglin, tim.golden
Date 2010-09-09.15:49:35
SpamBayes Score 3.7370266e-06
Marked as misclassified No
Message-id <1284047377.32.0.85578228319.issue9808@psf.upfronthosting.co.za>
In-reply-to
Content
I can't answer that for the 'LOGNAME' environment variable on non-Windows systems, I was just keying off of what the docs claimed. As for Windows, I just came across this article http://support.microsoft.com/kb/273633 that shows we can not rely on this in the test.  

I only put those environment variables in the test because I thought this test was a little weak (what else can we do?)

    user_name = os.getlogin()
    self.assertNotEqual(0, len(user_name))

Even though %USERNAME% == os.getlogin() MOST of the time. It should be removed from the test.
History
Date User Action Args
2010-09-09 15:49:37janglinsetrecipients: + janglin, tim.golden, brian.curtin
2010-09-09 15:49:37janglinsetmessageid: <1284047377.32.0.85578228319.issue9808@psf.upfronthosting.co.za>
2010-09-09 15:49:35janglinlinkissue9808 messages
2010-09-09 15:49:35janglincreate