
This issue trackerhas been migrated toGitHub, and is currentlyread-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.
Created on2016-04-10 10:16 byHenri Starmans, last changed2022-04-11 14:58 byadmin. This issue is nowclosed.
| Messages (2) | |||
|---|---|---|---|
| msg263126 -(view) | Author: Henri Starmans (Henri Starmans) | Date: 2016-04-10 10:16 | |
Function find_msvcrt() returns None in Python 3.5.1, I expected'msvcr100.dll'.test code:from ctypes.util import find_msvcrtprint(find_msvcrt()) | |||
| msg263143 -(view) | Author: Steve Dower (steve.dower)*![]() | Date: 2016-04-10 14:38 | |
Seeissue23606.Not only is your expectation incorrect, you wouldn't get sensible behavior if it was. You should generally avoid using this function, and use the msvcrt module or ctypes.cdll.msvcrt (if you don't need to interoperate with CPython itself). | |||
| History | |||
|---|---|---|---|
| Date | User | Action | Args |
| 2022-04-11 14:58:29 | admin | set | github: 70914 |
| 2016-04-10 14:38:31 | steve.dower | set | status: open -> closed superseder:ctypes.util.find_library("c") no longer makes sense resolution: duplicate messages: +msg263143 |
| 2016-04-10 10:16:26 | Henri Starmans | create | |