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 steve.dower
Recipients amaury.forgeotdarc, belopolsky, meador.inge, steve.dower, tim.golden, zach.ware
Date 2015-03-08.04:41:09
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1425789670.0.0.736264667252.issue23606@psf.upfronthosting.co.za>
In-reply-to
Content
With the changes to the CRT on Windows, it no longer makes any sense to call find_library("c") or ("m") as there is no single C Runtime DLL. The new structure has a grouped and layered approach that is better for versioning, so we now link to "api-ms-win-crt-*-l1-1-0.dll" where "*" is something like "filesystem", "heap", "locale", "math", "string", etc. and the "l1-1-0" part is a version.

I don't know what the intended purpose of this function is, so I can't suggest a good replacement other than very fast deprecation in 3.4 and raising an error in 3.5. Any better suggestions?
History
Date User Action Args
2015-03-08 04:41:10steve.dowersetrecipients: + steve.dower, amaury.forgeotdarc, belopolsky, tim.golden, meador.inge, zach.ware
2015-03-08 04:41:10steve.dowersetmessageid: <1425789670.0.0.736264667252.issue23606@psf.upfronthosting.co.za>
2015-03-08 04:41:09steve.dowerlinkissue23606 messages
2015-03-08 04:41:09steve.dowercreate