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 tim.golden
Recipients eryksun, paul.moore, steve.dower, tim.golden, zach.ware
Date 2018-07-23.12:16:45
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1532348205.78.0.56676864532.issue34195@psf.upfronthosting.co.za>
In-reply-to
Content
@eryksun almost idly I ran your ctypes code in the built interpreter. As written, it produces a lower-case c:\\ as yours did.

But...

Running Debug|Win32 interpreter...
Python 3.8.0a0 (heads/master:7a3056f, Jul 23 2018, 08:23:33) [MSC v.1912 32 bit (Intel)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>> import ctypes, sys
>>>
>>> sys.executable
'c:\\work-in-progress\\python\\cpython\\PCbuild\\win32\\python_d.exe'
>>> kernel32 = ctypes.WinDLL('kernel32', use_last_error=True)
>>> path = (ctypes.c_wchar * 4)()
>>> kernel32.GetVolumePathNameW(sys.executable, path, 4)
1
>>> path.value
'C:\\'
>>>
History
Date User Action Args
2018-07-23 12:16:45tim.goldensetrecipients: + tim.golden, paul.moore, zach.ware, eryksun, steve.dower
2018-07-23 12:16:45tim.goldensetmessageid: <1532348205.78.0.56676864532.issue34195@psf.upfronthosting.co.za>
2018-07-23 12:16:45tim.goldenlinkissue34195 messages
2018-07-23 12:16:45tim.goldencreate