[issue26727] ctypes.util.find_msvcrt() does not work in python 3.5.1

2016-04-10 Thread Steve Dower
Steve Dower added the comment: See issue23606. 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).

[issue26727] ctypes.util.find_msvcrt() does not work in python 3.5.1

2016-04-10 Thread Henri Starmans
New submission from Henri Starmans: Function find_msvcrt() returns None in Python 3.5.1, I expected 'msvcr100.dll'. test code: from ctypes.util import find_msvcrt print(find_msvcrt()) -- components: Windows messages: 263126 nosy: Henri Starmans, paul.moore, steve.dower, tim.golden,