Message250272
I think 3.5 should be distributed with vcruntime140.dll. It seems a waste for python.exe, python35.dll, and all of the extension modules and dependent DLLs to each take an FLS slot:
>>> import ctypes # +1 for _ctypes
>>> kernel32 = ctypes.WinDLL('kernel32')
>>> kernel32.FlsGetValue.restype = ctypes.c_void_p
>>> [x for x in range(128) if kernel32.FlsGetValue(x)]
[1, 2, 4, 5, 6, 8]
>>> import pyexpat, select, unicodedata, winsound
>>> import _bz2, _decimal, _elementtree, _hashlib
>>> import _lzma, _msi, _multiprocessing, _overlapped
>>> import _socket, _sqlite3, _ssl, _tkinter
>>> [x for x in range(128) if kernel32.FlsGetValue(x)]
[1, 2, 4, 5, 6, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27] |
|
Date |
User |
Action |
Args |
2015-09-09 02:23:05 | eryksun | set | recipients:
+ eryksun, paul.moore, larry, tim.golden, cgohlke, skrah, zach.ware, steve.dower |
2015-09-09 02:23:05 | eryksun | set | messageid: <1441765385.41.0.324393952316.issue25027@psf.upfronthosting.co.za> |
2015-09-09 02:23:05 | eryksun | link | issue25027 messages |
2015-09-09 02:23:04 | eryksun | create | |
|