diff options
author | Nat Goodspeed <nat@lindenlab.com> | 2010-01-14 16:46:20 -0500 |
---|---|---|
committer | Nat Goodspeed <nat@lindenlab.com> | 2010-01-14 16:46:20 -0500 |
commit | 5c0f263403ebd213c325f7d9f41c65f150a8153a (patch) | |
tree | 0518f4b369505c9743638cf6bf618ad8cda51fc5 /scripts/install.py | |
parent | 86d1b0b67eb8901c269f7710606ef97c84732348 (diff) |
Replace scripts dependency on win32api module with bundled ctypes.
Diffstat (limited to 'scripts/install.py')
-rwxr-xr-x | scripts/install.py | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/scripts/install.py b/scripts/install.py index 78b8880b95..7368af0b37 100755 --- a/scripts/install.py +++ b/scripts/install.py @@ -793,8 +793,13 @@ def _getuser(): import getpass return getpass.getuser() except ImportError: - import win32api - return win32api.GetUserName() + import ctypes + MAX_PATH = 260 # according to a recent WinDef.h + name = ctypes.create_unicode_buffer(MAX_PATH) + namelen = ctypes.c_int(len(name)) # len in chars, NOT bytes + if not ctypes.windll.advapi32.GetUserNameW(name, ctypes.byref(namelen)): + raise ctypes.WinError() + return name.value def _default_installable_cache(): """In general, the installable files do not change much, so find a |