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 eryksun
Recipients amaury.forgeotdarc, belopolsky, eryksun, meador.inge, steve.dower, tim.golden, zach.ware
Date 2015-03-09.18:29:57
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1425925797.71.0.562278285984.issue23606@psf.upfronthosting.co.za>
In-reply-to
Content
The api-ms-win-crt-* DLLs forward their exports to ucrtbase.dll, which currently uses named exports. When is it planned to remove the named exports?

    >>> crt = CDLL('ucrtbase')
    >>> filesystem = CDLL('api-ms-win-crt-filesystem-l1-1-0')  
    >>> math = CDLL('api-ms-win-crt-math-l1-1-0')

    >>> c_void_p.from_buffer(crt._stat64)
    c_void_p(8791677890384)
    >>> c_void_p.from_buffer(filesystem._stat64)
    c_void_p(8791677890384)

    >>> c_void_p.from_buffer(crt.fabs)          
    c_void_p(8791678417616)
    >>> c_void_p.from_buffer(math.fabs)
    c_void_p(8791678417616)
History
Date User Action Args
2015-03-09 18:29:57eryksunsetrecipients: + eryksun, amaury.forgeotdarc, belopolsky, tim.golden, meador.inge, zach.ware, steve.dower
2015-03-09 18:29:57eryksunsetmessageid: <1425925797.71.0.562278285984.issue23606@psf.upfronthosting.co.za>
2015-03-09 18:29:57eryksunlinkissue23606 messages
2015-03-09 18:29:57eryksuncreate