mirror of
https://github.com/python/cpython.git
synced 2024-11-24 02:15:30 +08:00
13f959b501
svn+ssh://svn.python.org/python/branches/py3k ........ r83561 | georg.brandl | 2010-08-02 22:17:50 +0200 (Mo, 02 Aug 2010) | 1 line #4280: remove outdated "versionchecker" tool. ........ r83563 | georg.brandl | 2010-08-02 22:21:21 +0200 (Mo, 02 Aug 2010) | 1 line #9037: add example how to raise custom exceptions from C code. ........ r83565 | georg.brandl | 2010-08-02 22:27:20 +0200 (Mo, 02 Aug 2010) | 1 line #9111: document that do_help() looks at docstrings. ........ r83566 | georg.brandl | 2010-08-02 22:30:57 +0200 (Mo, 02 Aug 2010) | 1 line #9019: remove false (in 3k) claim about Headers updates. ........ r83569 | georg.brandl | 2010-08-02 22:39:35 +0200 (Mo, 02 Aug 2010) | 1 line #7797: be explicit about bytes-oriented interface of base64 functions. ........ r83571 | georg.brandl | 2010-08-02 22:44:34 +0200 (Mo, 02 Aug 2010) | 1 line Clarify that abs() is not a namespace. ........ r83574 | georg.brandl | 2010-08-02 22:47:56 +0200 (Mo, 02 Aug 2010) | 1 line #6867: epoll.register() returns None. ........ r83575 | georg.brandl | 2010-08-02 22:52:10 +0200 (Mo, 02 Aug 2010) | 1 line #9238: zipfile does handle archive comments. ........ r83580 | georg.brandl | 2010-08-02 23:02:36 +0200 (Mo, 02 Aug 2010) | 1 line #8119: fix copy-paste error. ........ r83584 | georg.brandl | 2010-08-02 23:07:14 +0200 (Mo, 02 Aug 2010) | 1 line #9457: fix documentation links for 3.2. ........ r83599 | georg.brandl | 2010-08-02 23:51:18 +0200 (Mo, 02 Aug 2010) | 1 line #9061: warn that single quotes are never escaped. ........ r83612 | georg.brandl | 2010-08-03 00:59:44 +0200 (Di, 03 Aug 2010) | 1 line Fix unicode literal. ........ r83659 | georg.brandl | 2010-08-03 14:06:29 +0200 (Di, 03 Aug 2010) | 1 line Terminology fix: exceptions are raised, except in generator.throw(). ........ r83977 | georg.brandl | 2010-08-13 17:10:49 +0200 (Fr, 13 Aug 2010) | 1 line Fix copy-paste error. ........ r84015 | georg.brandl | 2010-08-14 17:44:34 +0200 (Sa, 14 Aug 2010) | 1 line Add some maintainers. ........ r84016 | georg.brandl | 2010-08-14 17:46:15 +0200 (Sa, 14 Aug 2010) | 1 line Wording fix. ........ r84017 | georg.brandl | 2010-08-14 17:46:59 +0200 (Sa, 14 Aug 2010) | 1 line Typo fix. ........ r84018 | georg.brandl | 2010-08-14 17:48:49 +0200 (Sa, 14 Aug 2010) | 1 line Typo fix. ........ r84020 | georg.brandl | 2010-08-14 17:57:20 +0200 (Sa, 14 Aug 2010) | 1 line Fix format. ........ r84141 | georg.brandl | 2010-08-17 16:11:59 +0200 (Di, 17 Aug 2010) | 1 line Markup nits. ........
58 lines
1.6 KiB
Python
58 lines
1.6 KiB
Python
"""Add Python to the search path on Windows
|
|
|
|
This is a simple script to add Python to the Windows search path. It
|
|
modifies the current user (HKCU) tree of the registry.
|
|
|
|
Copyright (c) 2008 by Christian Heimes <christian@cheimes.de>
|
|
Licensed to PSF under a Contributor Agreement.
|
|
"""
|
|
|
|
import sys
|
|
import site
|
|
import os
|
|
import winreg
|
|
|
|
HKCU = winreg.HKEY_CURRENT_USER
|
|
ENV = "Environment"
|
|
PATH = "PATH"
|
|
DEFAULT = "%PATH%"
|
|
|
|
def modify():
|
|
pythonpath = os.path.dirname(os.path.normpath(sys.executable))
|
|
scripts = os.path.join(pythonpath, "Scripts")
|
|
appdata = os.environ["APPDATA"]
|
|
if hasattr(site, "USER_SITE"):
|
|
userpath = site.USER_SITE.replace(appdata, "%APPDATA%")
|
|
userscripts = os.path.join(userpath, "Scripts")
|
|
else:
|
|
userscripts = None
|
|
|
|
with winreg.CreateKey(HKCU, ENV) as key:
|
|
try:
|
|
envpath = winreg.QueryValueEx(key, PATH)[0]
|
|
except WindowsError:
|
|
envpath = DEFAULT
|
|
|
|
paths = [envpath]
|
|
for path in (pythonpath, scripts, userscripts):
|
|
if path and path not in envpath and os.path.isdir(path):
|
|
paths.append(path)
|
|
|
|
envpath = os.pathsep.join(paths)
|
|
winreg.SetValueEx(key, PATH, 0, winreg.REG_EXPAND_SZ, envpath)
|
|
return paths, envpath
|
|
|
|
def main():
|
|
paths, envpath = modify()
|
|
if len(paths) > 1:
|
|
print("Path(s) added:")
|
|
print('\n'.join(paths[1:]))
|
|
else:
|
|
print("No path was added")
|
|
print("\nPATH is now:\n%s\n" % envpath)
|
|
print("Expanded:")
|
|
print(winreg.ExpandEnvironmentStrings(envpath))
|
|
|
|
if __name__ == '__main__':
|
|
main()
|