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 amaury.forgeotdarc
Recipients amaury.forgeotdarc, georg.brandl, ocean-city
Date 2008-06-13.16:43:13
SpamBayes Score 0.0
Marked as misclassified No
Message-id <1213375397.41.0.208738075812.issue3099@psf.upfronthosting.co.za>
In-reply-to
Content
OK, I think I got is now. The difference is between debug and release
builds.

Explanation:
- in release build, "import nul" calls stat("nul.pyd") which succeeds.
It then tries LoadLibrary("nul.pyd"), which fails with a DLL error.
- in debug builds, "import nul" first tries stat("nul_d.pyd") which
fails. It then tries stat("nul.py"), which succeeds to return an empty file!

Whaaaa.
History
Date User Action Args
2009-03-09 14:31:14georg.brandlsetspambayes_score: 0.69839 -> 0.0
2008-06-13 16:43:18amaury.forgeotdarcsetspambayes_score: 0.69839 -> 0.69839
recipients: + amaury.forgeotdarc, georg.brandl, ocean-city
2008-06-13 16:43:17amaury.forgeotdarcsetspambayes_score: 0.69839 -> 0.69839
messageid: <1213375397.41.0.208738075812.issue3099@psf.upfronthosting.co.za>
2008-06-13 16:43:16amaury.forgeotdarclinkissue3099 messages
2008-06-13 16:43:15amaury.forgeotdarccreate