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 ezio.melotti
Recipients BreamoreBoy, abkhd, ajaksu2, brian.curtin, ezio.melotti, loewis, tim.golden
Date 2013-02-28.05:28:15
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1362029295.78.0.828950928355.issue1709112@psf.upfronthosting.co.za>
In-reply-to
Content
Now the test (see Lib/test/test_os.py:470) has been changed to:

try:
    os.stat(r"c:\pagefile.sys")
except FileNotFoundError:
    pass # file does not exist; cannot run test
except OSError as e:
    self.fail("Could not stat pagefile.sys")

so this should work properly now.

I can't find the code changed by the second patch in Modules/posixmodule.c, so I'm going to close this issue as out of date.
History
Date User Action Args
2013-02-28 05:28:15ezio.melottisetrecipients: + ezio.melotti, loewis, abkhd, ajaksu2, tim.golden, brian.curtin, BreamoreBoy
2013-02-28 05:28:15ezio.melottisetmessageid: <1362029295.78.0.828950928355.issue1709112@psf.upfronthosting.co.za>
2013-02-28 05:28:15ezio.melottilinkissue1709112 messages
2013-02-28 05:28:15ezio.melotticreate