Guido van Rossum | f30bec7 | 1997-08-29 22:30:45 +0000 | [diff] [blame] | 1 | """Append module search paths for third-party packages to sys.path. |
Guido van Rossum | e57c96e | 1996-08-17 19:56:26 +0000 | [diff] [blame] | 2 | |
Guido van Rossum | f30bec7 | 1997-08-29 22:30:45 +0000 | [diff] [blame] | 3 | **************************************************************** |
| 4 | * This module is automatically imported during initialization. * |
| 5 | **************************************************************** |
Guido van Rossum | e57c96e | 1996-08-17 19:56:26 +0000 | [diff] [blame] | 6 | |
Walter Dörwald | f0dfc7a | 2003-10-20 14:01:56 +0000 | [diff] [blame] | 7 | This will append site-specific paths to the module search path. On |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 8 | Unix (including Mac OSX), it starts with sys.prefix and |
| 9 | sys.exec_prefix (if different) and appends |
Antoine Pitrou | 9e82b17 | 2014-06-12 19:41:30 -0400 | [diff] [blame] | 10 | lib/python<version>/site-packages. |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 11 | On other platforms (such as Windows), it tries each of the |
| 12 | prefixes directly, as well as with lib/site-packages appended. The |
Guido van Rossum | 62b297b | 1997-09-08 02:14:09 +0000 | [diff] [blame] | 13 | resulting directories, if they exist, are appended to sys.path, and |
| 14 | also inspected for path configuration files. |
Guido van Rossum | e57c96e | 1996-08-17 19:56:26 +0000 | [diff] [blame] | 15 | |
Vinay Sajip | 7ded1f0 | 2012-05-26 03:45:29 +0100 | [diff] [blame] | 16 | If a file named "pyvenv.cfg" exists one directory above sys.executable, |
| 17 | sys.prefix and sys.exec_prefix are set to that directory and |
Antoine Pitrou | 9e82b17 | 2014-06-12 19:41:30 -0400 | [diff] [blame] | 18 | it is also checked for site-packages (sys.base_prefix and |
Vinay Sajip | abd344c | 2012-07-03 16:33:57 +0100 | [diff] [blame] | 19 | sys.base_exec_prefix will always be the "real" prefixes of the Python |
Vinay Sajip | 7ded1f0 | 2012-05-26 03:45:29 +0100 | [diff] [blame] | 20 | installation). If "pyvenv.cfg" (a bootstrap configuration file) contains |
| 21 | the key "include-system-site-packages" set to anything other than "false" |
| 22 | (case-insensitive), the system-level prefixes will still also be |
| 23 | searched for site-packages; otherwise they won't. |
| 24 | |
| 25 | All of the resulting site-specific directories, if they exist, are |
| 26 | appended to sys.path, and also inspected for path configuration |
| 27 | files. |
| 28 | |
Guido van Rossum | f30bec7 | 1997-08-29 22:30:45 +0000 | [diff] [blame] | 29 | A path configuration file is a file whose name has the form |
| 30 | <package>.pth; its contents are additional directories (one per line) |
| 31 | to be added to sys.path. Non-existing directories (or |
| 32 | non-directories) are never added to sys.path; no directory is added to |
| 33 | sys.path more than once. Blank lines and lines beginning with |
Guido van Rossum | facf24b | 2001-12-17 16:07:06 +0000 | [diff] [blame] | 34 | '#' are skipped. Lines starting with 'import' are executed. |
Guido van Rossum | e57c96e | 1996-08-17 19:56:26 +0000 | [diff] [blame] | 35 | |
Guido van Rossum | f30bec7 | 1997-08-29 22:30:45 +0000 | [diff] [blame] | 36 | For example, suppose sys.prefix and sys.exec_prefix are set to |
Thomas Wouters | 00ee7ba | 2006-08-21 19:07:27 +0000 | [diff] [blame] | 37 | /usr/local and there is a directory /usr/local/lib/python2.5/site-packages |
Guido van Rossum | 62b297b | 1997-09-08 02:14:09 +0000 | [diff] [blame] | 38 | with three subdirectories, foo, bar and spam, and two path |
| 39 | configuration files, foo.pth and bar.pth. Assume foo.pth contains the |
| 40 | following: |
Guido van Rossum | f30bec7 | 1997-08-29 22:30:45 +0000 | [diff] [blame] | 41 | |
| 42 | # foo package configuration |
| 43 | foo |
| 44 | bar |
| 45 | bletch |
| 46 | |
| 47 | and bar.pth contains: |
| 48 | |
| 49 | # bar package configuration |
| 50 | bar |
| 51 | |
| 52 | Then the following directories are added to sys.path, in this order: |
| 53 | |
Thomas Wouters | 00ee7ba | 2006-08-21 19:07:27 +0000 | [diff] [blame] | 54 | /usr/local/lib/python2.5/site-packages/bar |
| 55 | /usr/local/lib/python2.5/site-packages/foo |
Guido van Rossum | f30bec7 | 1997-08-29 22:30:45 +0000 | [diff] [blame] | 56 | |
| 57 | Note that bletch is omitted because it doesn't exist; bar precedes foo |
| 58 | because bar.pth comes alphabetically before foo.pth; and spam is |
| 59 | omitted because it is not mentioned in either path configuration file. |
Guido van Rossum | e57c96e | 1996-08-17 19:56:26 +0000 | [diff] [blame] | 60 | |
Antoine Pitrou | 1a6cb30 | 2013-05-04 20:08:35 +0200 | [diff] [blame] | 61 | The readline module is also automatically configured to enable |
Martin Panter | e26da7c | 2016-06-02 10:07:09 +0000 | [diff] [blame] | 62 | completion for systems that support it. This can be overridden in |
Steve Dower | 313523c | 2016-09-17 12:22:41 -0700 | [diff] [blame] | 63 | sitecustomize, usercustomize or PYTHONSTARTUP. Starting Python in |
| 64 | isolated mode (-I) disables automatic readline configuration. |
Antoine Pitrou | 1a6cb30 | 2013-05-04 20:08:35 +0200 | [diff] [blame] | 65 | |
| 66 | After these operations, an attempt is made to import a module |
Guido van Rossum | f30bec7 | 1997-08-29 22:30:45 +0000 | [diff] [blame] | 67 | named sitecustomize, which can perform arbitrary additional |
| 68 | site-specific customizations. If this import fails with an |
| 69 | ImportError exception, it is silently ignored. |
Guido van Rossum | e57c96e | 1996-08-17 19:56:26 +0000 | [diff] [blame] | 70 | """ |
| 71 | |
Brett Cannon | 0096e26 | 2004-06-05 01:12:51 +0000 | [diff] [blame] | 72 | import sys |
| 73 | import os |
Georg Brandl | 1a3284e | 2007-12-02 09:40:06 +0000 | [diff] [blame] | 74 | import builtins |
Antoine Pitrou | 853395b | 2013-08-06 22:56:40 +0200 | [diff] [blame] | 75 | import _sitebuiltins |
Steve Dower | 184f3d4 | 2019-06-21 15:16:46 -0700 | [diff] [blame] | 76 | import io |
Guido van Rossum | e57c96e | 1996-08-17 19:56:26 +0000 | [diff] [blame] | 77 | |
Christian Heimes | 8dc226f | 2008-05-06 23:45:46 +0000 | [diff] [blame] | 78 | # Prefixes for site-packages; add additional prefixes like /usr/local here |
| 79 | PREFIXES = [sys.prefix, sys.exec_prefix] |
| 80 | # Enable per user site-packages directory |
| 81 | # set it to False to disable the feature or True to force the feature |
| 82 | ENABLE_USER_SITE = None |
Tarek Ziadé | 4a608c0 | 2009-08-20 21:28:05 +0000 | [diff] [blame] | 83 | |
Christian Heimes | 8dc226f | 2008-05-06 23:45:46 +0000 | [diff] [blame] | 84 | # for distutils.commands.install |
Tarek Ziadé | 4a608c0 | 2009-08-20 21:28:05 +0000 | [diff] [blame] | 85 | # These values are initialized by the getuserbase() and getusersitepackages() |
| 86 | # functions, through the main() function when Python starts. |
Christian Heimes | 8dc226f | 2008-05-06 23:45:46 +0000 | [diff] [blame] | 87 | USER_SITE = None |
| 88 | USER_BASE = None |
| 89 | |
Guido van Rossum | d74fb6b | 2001-03-02 06:43:49 +0000 | [diff] [blame] | 90 | |
native-api | 2145c8c | 2020-06-12 09:20:11 +0300 | [diff] [blame] | 91 | def _trace(message): |
| 92 | if sys.flags.verbose: |
| 93 | print(message, file=sys.stderr) |
| 94 | |
| 95 | |
Fred Drake | 38cb9f1 | 2000-09-28 16:52:36 +0000 | [diff] [blame] | 96 | def makepath(*paths): |
Victor Stinner | b103a93 | 2010-10-12 22:23:23 +0000 | [diff] [blame] | 97 | dir = os.path.join(*paths) |
| 98 | try: |
| 99 | dir = os.path.abspath(dir) |
| 100 | except OSError: |
| 101 | pass |
Fred Drake | 1fb5ce0 | 2001-07-02 16:55:42 +0000 | [diff] [blame] | 102 | return dir, os.path.normcase(dir) |
Fred Drake | 38cb9f1 | 2000-09-28 16:52:36 +0000 | [diff] [blame] | 103 | |
Christian Heimes | 8dc226f | 2008-05-06 23:45:46 +0000 | [diff] [blame] | 104 | |
Barry Warsaw | 28a691b | 2010-04-17 00:19:56 +0000 | [diff] [blame] | 105 | def abs_paths(): |
| 106 | """Set all module __file__ and __cached__ attributes to an absolute path""" |
Guido van Rossum | 7ac9d40 | 2007-05-18 00:24:43 +0000 | [diff] [blame] | 107 | for m in set(sys.modules.values()): |
Brett Cannon | 825ac38 | 2020-11-06 18:45:56 -0800 | [diff] [blame] | 108 | loader_module = None |
| 109 | try: |
| 110 | loader_module = m.__loader__.__module__ |
| 111 | except AttributeError: |
| 112 | try: |
| 113 | loader_module = m.__spec__.loader.__module__ |
| 114 | except AttributeError: |
| 115 | pass |
| 116 | if loader_module not in {'_frozen_importlib', '_frozen_importlib_external'}: |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 117 | continue # don't mess with a PEP 302-supplied __file__ |
Brett Cannon | 0096e26 | 2004-06-05 01:12:51 +0000 | [diff] [blame] | 118 | try: |
| 119 | m.__file__ = os.path.abspath(m.__file__) |
Steve Weber | 2487f30 | 2018-06-10 20:49:34 -0400 | [diff] [blame] | 120 | except (AttributeError, OSError, TypeError): |
Barry Warsaw | 28a691b | 2010-04-17 00:19:56 +0000 | [diff] [blame] | 121 | pass |
| 122 | try: |
| 123 | m.__cached__ = os.path.abspath(m.__cached__) |
Steve Weber | 2487f30 | 2018-06-10 20:49:34 -0400 | [diff] [blame] | 124 | except (AttributeError, OSError, TypeError): |
Barry Warsaw | 28a691b | 2010-04-17 00:19:56 +0000 | [diff] [blame] | 125 | pass |
Fred Drake | 38cb9f1 | 2000-09-28 16:52:36 +0000 | [diff] [blame] | 126 | |
Christian Heimes | 8dc226f | 2008-05-06 23:45:46 +0000 | [diff] [blame] | 127 | |
Brett Cannon | 0096e26 | 2004-06-05 01:12:51 +0000 | [diff] [blame] | 128 | def removeduppaths(): |
| 129 | """ Remove duplicate entries from sys.path along with making them |
| 130 | absolute""" |
| 131 | # This ensures that the initial path provided by the interpreter contains |
| 132 | # only absolute pathnames, even if we're running from the build directory. |
| 133 | L = [] |
| 134 | known_paths = set() |
| 135 | for dir in sys.path: |
| 136 | # Filter out duplicate paths (on case-insensitive file systems also |
| 137 | # if they only differ in case); turn relative paths into absolute |
| 138 | # paths. |
| 139 | dir, dircase = makepath(dir) |
INADA Naoki | a8f8d5b | 2017-06-29 00:31:53 +0900 | [diff] [blame] | 140 | if dircase not in known_paths: |
Brett Cannon | 0096e26 | 2004-06-05 01:12:51 +0000 | [diff] [blame] | 141 | L.append(dir) |
| 142 | known_paths.add(dircase) |
| 143 | sys.path[:] = L |
| 144 | return known_paths |
Fred Drake | 38cb9f1 | 2000-09-28 16:52:36 +0000 | [diff] [blame] | 145 | |
Christian Heimes | 8dc226f | 2008-05-06 23:45:46 +0000 | [diff] [blame] | 146 | |
Fred Drake | 7f5296e | 2001-07-20 20:06:17 +0000 | [diff] [blame] | 147 | def _init_pathinfo(): |
Brett Cannon | 5f0507d | 2016-04-08 15:04:28 -0700 | [diff] [blame] | 148 | """Return a set containing all existing file system items from sys.path.""" |
Brett Cannon | 0096e26 | 2004-06-05 01:12:51 +0000 | [diff] [blame] | 149 | d = set() |
Brett Cannon | 5f0507d | 2016-04-08 15:04:28 -0700 | [diff] [blame] | 150 | for item in sys.path: |
Brett Cannon | 0096e26 | 2004-06-05 01:12:51 +0000 | [diff] [blame] | 151 | try: |
Brett Cannon | 5f0507d | 2016-04-08 15:04:28 -0700 | [diff] [blame] | 152 | if os.path.exists(item): |
| 153 | _, itemcase = makepath(item) |
| 154 | d.add(itemcase) |
Brett Cannon | 0096e26 | 2004-06-05 01:12:51 +0000 | [diff] [blame] | 155 | except TypeError: |
Fred Drake | 7f5296e | 2001-07-20 20:06:17 +0000 | [diff] [blame] | 156 | continue |
Brett Cannon | 0096e26 | 2004-06-05 01:12:51 +0000 | [diff] [blame] | 157 | return d |
Fred Drake | 7f5296e | 2001-07-20 20:06:17 +0000 | [diff] [blame] | 158 | |
Christian Heimes | 8dc226f | 2008-05-06 23:45:46 +0000 | [diff] [blame] | 159 | |
Brett Cannon | 0096e26 | 2004-06-05 01:12:51 +0000 | [diff] [blame] | 160 | def addpackage(sitedir, name, known_paths): |
Guido van Rossum | d59da4b | 2007-05-22 18:11:13 +0000 | [diff] [blame] | 161 | """Process a .pth file within the site-packages directory: |
| 162 | For each line in the file, either combine it with sitedir to a path |
| 163 | and add that to known_paths, or execute it if it starts with 'import '. |
| 164 | """ |
Brett Cannon | 0096e26 | 2004-06-05 01:12:51 +0000 | [diff] [blame] | 165 | if known_paths is None: |
Brett Cannon | 13252b8 | 2013-01-25 13:57:16 -0500 | [diff] [blame] | 166 | known_paths = _init_pathinfo() |
Brett Cannon | 5f0507d | 2016-04-08 15:04:28 -0700 | [diff] [blame] | 167 | reset = True |
Fred Drake | 7f5296e | 2001-07-20 20:06:17 +0000 | [diff] [blame] | 168 | else: |
Brett Cannon | 5f0507d | 2016-04-08 15:04:28 -0700 | [diff] [blame] | 169 | reset = False |
Brett Cannon | 0096e26 | 2004-06-05 01:12:51 +0000 | [diff] [blame] | 170 | fullname = os.path.join(sitedir, name) |
native-api | 2145c8c | 2020-06-12 09:20:11 +0300 | [diff] [blame] | 171 | _trace(f"Processing .pth file: {fullname!r}") |
Brett Cannon | 0096e26 | 2004-06-05 01:12:51 +0000 | [diff] [blame] | 172 | try: |
Inada Naoki | 4827483 | 2021-03-29 12:28:14 +0900 | [diff] [blame] | 173 | # locale encoding is not ideal especially on Windows. But we have used |
| 174 | # it for a long time. setuptools uses the locale encoding too. |
| 175 | f = io.TextIOWrapper(io.open_code(fullname), encoding="locale") |
Andrew Svetlov | f7a17b4 | 2012-12-25 16:47:37 +0200 | [diff] [blame] | 176 | except OSError: |
Brett Cannon | 0096e26 | 2004-06-05 01:12:51 +0000 | [diff] [blame] | 177 | return |
Christian Heimes | 8dc226f | 2008-05-06 23:45:46 +0000 | [diff] [blame] | 178 | with f: |
R. David Murray | b4ca59b | 2010-12-26 19:54:29 +0000 | [diff] [blame] | 179 | for n, line in enumerate(f): |
Brett Cannon | 0096e26 | 2004-06-05 01:12:51 +0000 | [diff] [blame] | 180 | if line.startswith("#"): |
| 181 | continue |
idomic | 0c71a66 | 2020-09-19 15:13:29 -0400 | [diff] [blame] | 182 | if line.strip() == "": |
| 183 | continue |
R. David Murray | b4ca59b | 2010-12-26 19:54:29 +0000 | [diff] [blame] | 184 | try: |
| 185 | if line.startswith(("import ", "import\t")): |
| 186 | exec(line) |
| 187 | continue |
| 188 | line = line.rstrip() |
| 189 | dir, dircase = makepath(sitedir, line) |
| 190 | if not dircase in known_paths and os.path.exists(dir): |
| 191 | sys.path.append(dir) |
| 192 | known_paths.add(dircase) |
Florent Xicluna | 54540ec | 2011-11-04 08:29:17 +0100 | [diff] [blame] | 193 | except Exception: |
R. David Murray | b4ca59b | 2010-12-26 19:54:29 +0000 | [diff] [blame] | 194 | print("Error processing line {:d} of {}:\n".format(n+1, fullname), |
| 195 | file=sys.stderr) |
Victor Stinner | 6553211 | 2012-02-21 22:10:16 +0100 | [diff] [blame] | 196 | import traceback |
R. David Murray | b4ca59b | 2010-12-26 19:54:29 +0000 | [diff] [blame] | 197 | for record in traceback.format_exception(*sys.exc_info()): |
| 198 | for line in record.splitlines(): |
| 199 | print(' '+line, file=sys.stderr) |
| 200 | print("\nRemainder of file ignored", file=sys.stderr) |
| 201 | break |
Brett Cannon | 0096e26 | 2004-06-05 01:12:51 +0000 | [diff] [blame] | 202 | if reset: |
| 203 | known_paths = None |
| 204 | return known_paths |
| 205 | |
Christian Heimes | 8dc226f | 2008-05-06 23:45:46 +0000 | [diff] [blame] | 206 | |
Brett Cannon | 12f8c4d | 2004-07-09 23:38:18 +0000 | [diff] [blame] | 207 | def addsitedir(sitedir, known_paths=None): |
Brett Cannon | 0096e26 | 2004-06-05 01:12:51 +0000 | [diff] [blame] | 208 | """Add 'sitedir' argument to sys.path if missing and handle .pth files in |
| 209 | 'sitedir'""" |
native-api | 2145c8c | 2020-06-12 09:20:11 +0300 | [diff] [blame] | 210 | _trace(f"Adding directory: {sitedir!r}") |
Brett Cannon | 0096e26 | 2004-06-05 01:12:51 +0000 | [diff] [blame] | 211 | if known_paths is None: |
Brett Cannon | 4d0bddf | 2004-07-20 02:28:28 +0000 | [diff] [blame] | 212 | known_paths = _init_pathinfo() |
Brett Cannon | 5f0507d | 2016-04-08 15:04:28 -0700 | [diff] [blame] | 213 | reset = True |
Brett Cannon | 0096e26 | 2004-06-05 01:12:51 +0000 | [diff] [blame] | 214 | else: |
Brett Cannon | 5f0507d | 2016-04-08 15:04:28 -0700 | [diff] [blame] | 215 | reset = False |
Fred Drake | 1fb5ce0 | 2001-07-02 16:55:42 +0000 | [diff] [blame] | 216 | sitedir, sitedircase = makepath(sitedir) |
Brett Cannon | 0096e26 | 2004-06-05 01:12:51 +0000 | [diff] [blame] | 217 | if not sitedircase in known_paths: |
Guido van Rossum | 45e2fbc | 1998-03-26 21:13:24 +0000 | [diff] [blame] | 218 | sys.path.append(sitedir) # Add path component |
Vinay Sajip | 7ded1f0 | 2012-05-26 03:45:29 +0100 | [diff] [blame] | 219 | known_paths.add(sitedircase) |
Guido van Rossum | f30bec7 | 1997-08-29 22:30:45 +0000 | [diff] [blame] | 220 | try: |
Guido van Rossum | 45e2fbc | 1998-03-26 21:13:24 +0000 | [diff] [blame] | 221 | names = os.listdir(sitedir) |
Andrew Svetlov | ad28c7f | 2012-12-18 22:02:39 +0200 | [diff] [blame] | 222 | except OSError: |
Guido van Rossum | 45e2fbc | 1998-03-26 21:13:24 +0000 | [diff] [blame] | 223 | return |
Christian Heimes | 8dc226f | 2008-05-06 23:45:46 +0000 | [diff] [blame] | 224 | names = [name for name in names if name.endswith(".pth")] |
| 225 | for name in sorted(names): |
| 226 | addpackage(sitedir, name, known_paths) |
Fred Drake | 7f5296e | 2001-07-20 20:06:17 +0000 | [diff] [blame] | 227 | if reset: |
Brett Cannon | 0096e26 | 2004-06-05 01:12:51 +0000 | [diff] [blame] | 228 | known_paths = None |
| 229 | return known_paths |
Guido van Rossum | f30bec7 | 1997-08-29 22:30:45 +0000 | [diff] [blame] | 230 | |
Christian Heimes | 8dc226f | 2008-05-06 23:45:46 +0000 | [diff] [blame] | 231 | |
| 232 | def check_enableusersite(): |
| 233 | """Check if user site directory is safe for inclusion |
| 234 | |
Alexandre Vassalotti | a79e33e | 2008-05-15 22:51:26 +0000 | [diff] [blame] | 235 | The function tests for the command line flag (including environment var), |
Christian Heimes | 8dc226f | 2008-05-06 23:45:46 +0000 | [diff] [blame] | 236 | process uid/gid equal to effective uid/gid. |
| 237 | |
| 238 | None: Disabled for security reasons |
| 239 | False: Disabled by user (command line option) |
| 240 | True: Safe and enabled |
| 241 | """ |
| 242 | if sys.flags.no_user_site: |
| 243 | return False |
| 244 | |
| 245 | if hasattr(os, "getuid") and hasattr(os, "geteuid"): |
| 246 | # check process uid == effective uid |
| 247 | if os.geteuid() != os.getuid(): |
| 248 | return None |
| 249 | if hasattr(os, "getgid") and hasattr(os, "getegid"): |
| 250 | # check process gid == effective gid |
| 251 | if os.getegid() != os.getgid(): |
| 252 | return None |
| 253 | |
| 254 | return True |
| 255 | |
INADA Naoki | a8f8d5b | 2017-06-29 00:31:53 +0900 | [diff] [blame] | 256 | |
| 257 | # NOTE: sysconfig and it's dependencies are relatively large but site module |
| 258 | # needs very limited part of them. |
| 259 | # To speedup startup time, we have copy of them. |
| 260 | # |
| 261 | # See https://bugs.python.org/issue29585 |
| 262 | |
| 263 | # Copy of sysconfig._getuserbase() |
| 264 | def _getuserbase(): |
| 265 | env_base = os.environ.get("PYTHONUSERBASE", None) |
| 266 | if env_base: |
| 267 | return env_base |
| 268 | |
pxinwr | ab74c01 | 2020-12-21 06:27:42 +0800 | [diff] [blame] | 269 | # VxWorks has no home directories |
| 270 | if sys.platform == "vxworks": |
| 271 | return None |
| 272 | |
INADA Naoki | a8f8d5b | 2017-06-29 00:31:53 +0900 | [diff] [blame] | 273 | def joinuser(*args): |
| 274 | return os.path.expanduser(os.path.join(*args)) |
| 275 | |
| 276 | if os.name == "nt": |
| 277 | base = os.environ.get("APPDATA") or "~" |
| 278 | return joinuser(base, "Python") |
| 279 | |
| 280 | if sys.platform == "darwin" and sys._framework: |
| 281 | return joinuser("~", "Library", sys._framework, |
| 282 | "%d.%d" % sys.version_info[:2]) |
| 283 | |
| 284 | return joinuser("~", ".local") |
| 285 | |
| 286 | |
| 287 | # Same to sysconfig.get_path('purelib', os.name+'_user') |
| 288 | def _get_path(userbase): |
| 289 | version = sys.version_info |
| 290 | |
| 291 | if os.name == 'nt': |
Steve Dower | dd18001 | 2020-09-05 00:45:54 +0100 | [diff] [blame] | 292 | ver_nodot = sys.winver.replace('.', '') |
| 293 | return f'{userbase}\\Python{ver_nodot}\\site-packages' |
INADA Naoki | a8f8d5b | 2017-06-29 00:31:53 +0900 | [diff] [blame] | 294 | |
| 295 | if sys.platform == 'darwin' and sys._framework: |
| 296 | return f'{userbase}/lib/python/site-packages' |
| 297 | |
| 298 | return f'{userbase}/lib/python{version[0]}.{version[1]}/site-packages' |
| 299 | |
| 300 | |
Tarek Ziadé | 4a608c0 | 2009-08-20 21:28:05 +0000 | [diff] [blame] | 301 | def getuserbase(): |
| 302 | """Returns the `user base` directory path. |
| 303 | |
| 304 | The `user base` directory can be used to store data. If the global |
| 305 | variable ``USER_BASE`` is not initialized yet, this function will also set |
| 306 | it. |
| 307 | """ |
| 308 | global USER_BASE |
INADA Naoki | a8f8d5b | 2017-06-29 00:31:53 +0900 | [diff] [blame] | 309 | if USER_BASE is None: |
| 310 | USER_BASE = _getuserbase() |
Tarek Ziadé | 4a608c0 | 2009-08-20 21:28:05 +0000 | [diff] [blame] | 311 | return USER_BASE |
| 312 | |
INADA Naoki | a8f8d5b | 2017-06-29 00:31:53 +0900 | [diff] [blame] | 313 | |
Tarek Ziadé | 4a608c0 | 2009-08-20 21:28:05 +0000 | [diff] [blame] | 314 | def getusersitepackages(): |
| 315 | """Returns the user-specific site-packages directory path. |
| 316 | |
| 317 | If the global variable ``USER_SITE`` is not initialized yet, this |
| 318 | function will also set it. |
| 319 | """ |
pxinwr | ab74c01 | 2020-12-21 06:27:42 +0800 | [diff] [blame] | 320 | global USER_SITE, ENABLE_USER_SITE |
INADA Naoki | a8f8d5b | 2017-06-29 00:31:53 +0900 | [diff] [blame] | 321 | userbase = getuserbase() # this will also set USER_BASE |
Tarek Ziadé | 4a608c0 | 2009-08-20 21:28:05 +0000 | [diff] [blame] | 322 | |
INADA Naoki | a8f8d5b | 2017-06-29 00:31:53 +0900 | [diff] [blame] | 323 | if USER_SITE is None: |
pxinwr | ab74c01 | 2020-12-21 06:27:42 +0800 | [diff] [blame] | 324 | if userbase is None: |
| 325 | ENABLE_USER_SITE = False # disable user site and return None |
| 326 | else: |
| 327 | USER_SITE = _get_path(userbase) |
Tarek Ziadé | 4a608c0 | 2009-08-20 21:28:05 +0000 | [diff] [blame] | 328 | |
Tarek Ziadé | 4a608c0 | 2009-08-20 21:28:05 +0000 | [diff] [blame] | 329 | return USER_SITE |
Christian Heimes | 8dc226f | 2008-05-06 23:45:46 +0000 | [diff] [blame] | 330 | |
| 331 | def addusersitepackages(known_paths): |
| 332 | """Add a per user site-package to sys.path |
| 333 | |
| 334 | Each user has its own python directory with site-packages in the |
| 335 | home directory. |
Christian Heimes | 8dc226f | 2008-05-06 23:45:46 +0000 | [diff] [blame] | 336 | """ |
Tarek Ziadé | 4a608c0 | 2009-08-20 21:28:05 +0000 | [diff] [blame] | 337 | # get the per user site-package path |
| 338 | # this call will also make sure USER_BASE and USER_SITE are set |
native-api | 2145c8c | 2020-06-12 09:20:11 +0300 | [diff] [blame] | 339 | _trace("Processing user site-packages") |
Tarek Ziadé | 4a608c0 | 2009-08-20 21:28:05 +0000 | [diff] [blame] | 340 | user_site = getusersitepackages() |
Christian Heimes | 8dc226f | 2008-05-06 23:45:46 +0000 | [diff] [blame] | 341 | |
Tarek Ziadé | 4a608c0 | 2009-08-20 21:28:05 +0000 | [diff] [blame] | 342 | if ENABLE_USER_SITE and os.path.isdir(user_site): |
| 343 | addsitedir(user_site, known_paths) |
Christian Heimes | 8dc226f | 2008-05-06 23:45:46 +0000 | [diff] [blame] | 344 | return known_paths |
| 345 | |
Vinay Sajip | 7ded1f0 | 2012-05-26 03:45:29 +0100 | [diff] [blame] | 346 | def getsitepackages(prefixes=None): |
Antoine Pitrou | 9e82b17 | 2014-06-12 19:41:30 -0400 | [diff] [blame] | 347 | """Returns a list containing all global site-packages directories. |
Christian Heimes | 8dc226f | 2008-05-06 23:45:46 +0000 | [diff] [blame] | 348 | |
Vinay Sajip | 7ded1f0 | 2012-05-26 03:45:29 +0100 | [diff] [blame] | 349 | For each directory present in ``prefixes`` (or the global ``PREFIXES``), |
| 350 | this function will find its `site-packages` subdirectory depending on the |
| 351 | system environment, and will return a list of full paths. |
Tarek Ziadé | 4a608c0 | 2009-08-20 21:28:05 +0000 | [diff] [blame] | 352 | """ |
| 353 | sitepackages = [] |
Benjamin Peterson | 3e5cd1d | 2010-06-27 21:45:24 +0000 | [diff] [blame] | 354 | seen = set() |
Christian Heimes | 8dc226f | 2008-05-06 23:45:46 +0000 | [diff] [blame] | 355 | |
Vinay Sajip | 7ded1f0 | 2012-05-26 03:45:29 +0100 | [diff] [blame] | 356 | if prefixes is None: |
| 357 | prefixes = PREFIXES |
| 358 | |
| 359 | for prefix in prefixes: |
Christian Heimes | 8dc226f | 2008-05-06 23:45:46 +0000 | [diff] [blame] | 360 | if not prefix or prefix in seen: |
| 361 | continue |
Benjamin Peterson | 3e5cd1d | 2010-06-27 21:45:24 +0000 | [diff] [blame] | 362 | seen.add(prefix) |
Christian Heimes | 8dc226f | 2008-05-06 23:45:46 +0000 | [diff] [blame] | 363 | |
Victor Stinner | 8510f43 | 2020-03-10 09:53:09 +0100 | [diff] [blame] | 364 | libdirs = [sys.platlibdir] |
| 365 | if sys.platlibdir != "lib": |
| 366 | libdirs.append("lib") |
| 367 | |
Christian Heimes | de0b962 | 2012-11-19 00:59:39 +0100 | [diff] [blame] | 368 | if os.sep == '/': |
Victor Stinner | 8510f43 | 2020-03-10 09:53:09 +0100 | [diff] [blame] | 369 | for libdir in libdirs: |
| 370 | path = os.path.join(prefix, libdir, |
| 371 | "python%d.%d" % sys.version_info[:2], |
| 372 | "site-packages") |
| 373 | sitepackages.append(path) |
Christian Heimes | 8dc226f | 2008-05-06 23:45:46 +0000 | [diff] [blame] | 374 | else: |
Tarek Ziadé | 4a608c0 | 2009-08-20 21:28:05 +0000 | [diff] [blame] | 375 | sitepackages.append(prefix) |
Victor Stinner | 8510f43 | 2020-03-10 09:53:09 +0100 | [diff] [blame] | 376 | |
| 377 | for libdir in libdirs: |
| 378 | path = os.path.join(prefix, libdir, "site-packages") |
| 379 | sitepackages.append(path) |
Tarek Ziadé | 4a608c0 | 2009-08-20 21:28:05 +0000 | [diff] [blame] | 380 | return sitepackages |
Christian Heimes | 8dc226f | 2008-05-06 23:45:46 +0000 | [diff] [blame] | 381 | |
Vinay Sajip | 7ded1f0 | 2012-05-26 03:45:29 +0100 | [diff] [blame] | 382 | def addsitepackages(known_paths, prefixes=None): |
Antoine Pitrou | 9e82b17 | 2014-06-12 19:41:30 -0400 | [diff] [blame] | 383 | """Add site-packages to sys.path""" |
native-api | 2145c8c | 2020-06-12 09:20:11 +0300 | [diff] [blame] | 384 | _trace("Processing global site-packages") |
Vinay Sajip | 7ded1f0 | 2012-05-26 03:45:29 +0100 | [diff] [blame] | 385 | for sitedir in getsitepackages(prefixes): |
Christian Heimes | 8dc226f | 2008-05-06 23:45:46 +0000 | [diff] [blame] | 386 | if os.path.isdir(sitedir): |
| 387 | addsitedir(sitedir, known_paths) |
| 388 | |
| 389 | return known_paths |
Fred Drake | 7f5296e | 2001-07-20 20:06:17 +0000 | [diff] [blame] | 390 | |
Brett Cannon | 0096e26 | 2004-06-05 01:12:51 +0000 | [diff] [blame] | 391 | def setquit(): |
Brian Curtin | fb1d3c1 | 2010-04-12 23:33:42 +0000 | [diff] [blame] | 392 | """Define new builtins 'quit' and 'exit'. |
| 393 | |
| 394 | These are objects which make the interpreter exit when called. |
| 395 | The repr of each object contains a hint at how it works. |
Guido van Rossum | d89fa0c | 1998-08-07 18:01:14 +0000 | [diff] [blame] | 396 | |
Brett Cannon | 0096e26 | 2004-06-05 01:12:51 +0000 | [diff] [blame] | 397 | """ |
Ned Deily | c6ef503 | 2016-10-01 21:12:16 -0400 | [diff] [blame] | 398 | if os.sep == '\\': |
Georg Brandl | 24cb053 | 2006-03-09 23:22:06 +0000 | [diff] [blame] | 399 | eof = 'Ctrl-Z plus Return' |
Brett Cannon | 0096e26 | 2004-06-05 01:12:51 +0000 | [diff] [blame] | 400 | else: |
Georg Brandl | 24cb053 | 2006-03-09 23:22:06 +0000 | [diff] [blame] | 401 | eof = 'Ctrl-D (i.e. EOF)' |
Tim Peters | 88ca467 | 2006-03-10 23:39:56 +0000 | [diff] [blame] | 402 | |
Antoine Pitrou | 853395b | 2013-08-06 22:56:40 +0200 | [diff] [blame] | 403 | builtins.quit = _sitebuiltins.Quitter('quit', eof) |
| 404 | builtins.exit = _sitebuiltins.Quitter('exit', eof) |
Brett Cannon | 0096e26 | 2004-06-05 01:12:51 +0000 | [diff] [blame] | 405 | |
| 406 | |
Brett Cannon | 0096e26 | 2004-06-05 01:12:51 +0000 | [diff] [blame] | 407 | def setcopyright(): |
Georg Brandl | 1a3284e | 2007-12-02 09:40:06 +0000 | [diff] [blame] | 408 | """Set 'copyright' and 'credits' in builtins""" |
Antoine Pitrou | 853395b | 2013-08-06 22:56:40 +0200 | [diff] [blame] | 409 | builtins.copyright = _sitebuiltins._Printer("copyright", sys.copyright) |
Brett Cannon | 0096e26 | 2004-06-05 01:12:51 +0000 | [diff] [blame] | 410 | if sys.platform[:4] == 'java': |
Antoine Pitrou | 853395b | 2013-08-06 22:56:40 +0200 | [diff] [blame] | 411 | builtins.credits = _sitebuiltins._Printer( |
Brett Cannon | 0096e26 | 2004-06-05 01:12:51 +0000 | [diff] [blame] | 412 | "credits", |
Antoine Pitrou | f93c7b8 | 2013-08-01 19:46:04 +0200 | [diff] [blame] | 413 | "Jython is maintained by the Jython developers (www.jython.org).") |
Brett Cannon | 0096e26 | 2004-06-05 01:12:51 +0000 | [diff] [blame] | 414 | else: |
Antoine Pitrou | 853395b | 2013-08-06 22:56:40 +0200 | [diff] [blame] | 415 | builtins.credits = _sitebuiltins._Printer("credits", """\ |
Brett Cannon | 0096e26 | 2004-06-05 01:12:51 +0000 | [diff] [blame] | 416 | Thanks to CWI, CNRI, BeOpen.com, Zope Corporation and a cast of thousands |
Antoine Pitrou | f93c7b8 | 2013-08-01 19:46:04 +0200 | [diff] [blame] | 417 | for supporting Python development. See www.python.org for more information.""") |
Martin v. Löwis | c00d39e | 2014-03-30 21:07:25 +0200 | [diff] [blame] | 418 | files, dirs = [], [] |
| 419 | # Not all modules are required to have a __file__ attribute. See |
| 420 | # PEP 420 for more details. |
| 421 | if hasattr(os, '__file__'): |
| 422 | here = os.path.dirname(os.__file__) |
| 423 | files.extend(["LICENSE.txt", "LICENSE"]) |
| 424 | dirs.extend([os.path.join(here, os.pardir), here, os.curdir]) |
Antoine Pitrou | 853395b | 2013-08-06 22:56:40 +0200 | [diff] [blame] | 425 | builtins.license = _sitebuiltins._Printer( |
R David Murray | 692ee9e | 2013-09-14 13:31:44 -0400 | [diff] [blame] | 426 | "license", |
Benjamin Peterson | d40f136 | 2015-02-01 20:17:22 -0500 | [diff] [blame] | 427 | "See https://www.python.org/psf/license/", |
Martin v. Löwis | c00d39e | 2014-03-30 21:07:25 +0200 | [diff] [blame] | 428 | files, dirs) |
Guido van Rossum | d125239 | 2000-09-05 04:39:55 +0000 | [diff] [blame] | 429 | |
| 430 | |
Brett Cannon | 0096e26 | 2004-06-05 01:12:51 +0000 | [diff] [blame] | 431 | def sethelper(): |
Antoine Pitrou | 853395b | 2013-08-06 22:56:40 +0200 | [diff] [blame] | 432 | builtins.help = _sitebuiltins._Helper() |
Brett Cannon | 0096e26 | 2004-06-05 01:12:51 +0000 | [diff] [blame] | 433 | |
Antoine Pitrou | 1a6cb30 | 2013-05-04 20:08:35 +0200 | [diff] [blame] | 434 | def enablerlcompleter(): |
| 435 | """Enable default readline configuration on interactive prompts, by |
| 436 | registering a sys.__interactivehook__. |
| 437 | |
| 438 | If the readline module can be imported, the hook will set the Tab key |
| 439 | as completion key and register ~/.python_history as history file. |
Martin Panter | e26da7c | 2016-06-02 10:07:09 +0000 | [diff] [blame] | 440 | This can be overridden in the sitecustomize or usercustomize module, |
Antoine Pitrou | 1a6cb30 | 2013-05-04 20:08:35 +0200 | [diff] [blame] | 441 | or in a PYTHONSTARTUP file. |
| 442 | """ |
| 443 | def register_readline(): |
| 444 | import atexit |
| 445 | try: |
| 446 | import readline |
| 447 | import rlcompleter |
Brett Cannon | cd171c8 | 2013-07-04 17:43:24 -0400 | [diff] [blame] | 448 | except ImportError: |
Antoine Pitrou | 1a6cb30 | 2013-05-04 20:08:35 +0200 | [diff] [blame] | 449 | return |
| 450 | |
| 451 | # Reading the initialization (config) file may not be enough to set a |
R David Murray | 4a04301 | 2013-09-06 13:08:08 -0400 | [diff] [blame] | 452 | # completion key, so we set one first and then read the file. |
| 453 | readline_doc = getattr(readline, '__doc__', '') |
| 454 | if readline_doc is not None and 'libedit' in readline_doc: |
Antoine Pitrou | 1a6cb30 | 2013-05-04 20:08:35 +0200 | [diff] [blame] | 455 | readline.parse_and_bind('bind ^I rl_complete') |
| 456 | else: |
| 457 | readline.parse_and_bind('tab: complete') |
Mark Dickinson | 9d35133 | 2013-05-06 15:39:31 +0200 | [diff] [blame] | 458 | |
| 459 | try: |
| 460 | readline.read_init_file() |
| 461 | except OSError: |
| 462 | # An OSError here could have many causes, but the most likely one |
| 463 | # is that there's no .inputrc file (or .editrc file in the case of |
| 464 | # Mac OS X + libedit) in the expected location. In that case, we |
| 465 | # want to ignore the exception. |
| 466 | pass |
Antoine Pitrou | 1a6cb30 | 2013-05-04 20:08:35 +0200 | [diff] [blame] | 467 | |
Jason R. Coombs | 4d91490 | 2014-01-28 09:06:58 -0500 | [diff] [blame] | 468 | if readline.get_current_history_length() == 0: |
Antoine Pitrou | 5d23e6d | 2013-09-29 22:18:38 +0200 | [diff] [blame] | 469 | # If no history was loaded, default to .python_history. |
| 470 | # The guard is necessary to avoid doubling history size at |
| 471 | # each interpreter exit when readline was already configured |
| 472 | # through a PYTHONSTARTUP hook, see: |
| 473 | # http://bugs.python.org/issue5845#msg198636 |
| 474 | history = os.path.join(os.path.expanduser('~'), |
| 475 | '.python_history') |
| 476 | try: |
| 477 | readline.read_history_file(history) |
Serhiy Storchaka | 55fe1ae | 2017-04-16 10:46:38 +0300 | [diff] [blame] | 478 | except OSError: |
Antoine Pitrou | 5d23e6d | 2013-09-29 22:18:38 +0200 | [diff] [blame] | 479 | pass |
Anthony Sottile | b249966 | 2018-08-06 01:28:19 -0700 | [diff] [blame] | 480 | |
| 481 | def write_history(): |
| 482 | try: |
| 483 | readline.write_history_file(history) |
Victor Stinner | 0ab917e | 2020-07-02 12:43:25 +0200 | [diff] [blame] | 484 | except OSError: |
| 485 | # bpo-19891, bpo-41193: Home directory does not exist |
| 486 | # or is not writable, or the filesystem is read-only. |
Anthony Sottile | b249966 | 2018-08-06 01:28:19 -0700 | [diff] [blame] | 487 | pass |
| 488 | |
| 489 | atexit.register(write_history) |
Antoine Pitrou | 1a6cb30 | 2013-05-04 20:08:35 +0200 | [diff] [blame] | 490 | |
| 491 | sys.__interactivehook__ = register_readline |
| 492 | |
Vinay Sajip | 7ded1f0 | 2012-05-26 03:45:29 +0100 | [diff] [blame] | 493 | def venv(known_paths): |
| 494 | global PREFIXES, ENABLE_USER_SITE |
| 495 | |
| 496 | env = os.environ |
Vinay Sajip | 2895244 | 2012-06-25 00:47:46 +0100 | [diff] [blame] | 497 | if sys.platform == 'darwin' and '__PYVENV_LAUNCHER__' in env: |
Steve Dower | a8474d0 | 2019-02-03 23:19:38 -0800 | [diff] [blame] | 498 | executable = sys._base_executable = os.environ['__PYVENV_LAUNCHER__'] |
Vinay Sajip | 7ded1f0 | 2012-05-26 03:45:29 +0100 | [diff] [blame] | 499 | else: |
| 500 | executable = sys.executable |
Vinay Sajip | 27e4b60 | 2012-11-23 19:16:49 +0000 | [diff] [blame] | 501 | exe_dir, _ = os.path.split(os.path.abspath(executable)) |
| 502 | site_prefix = os.path.dirname(exe_dir) |
Vinay Sajip | 7ded1f0 | 2012-05-26 03:45:29 +0100 | [diff] [blame] | 503 | sys._home = None |
Vinay Sajip | 7ded1f0 | 2012-05-26 03:45:29 +0100 | [diff] [blame] | 504 | conf_basename = 'pyvenv.cfg' |
| 505 | candidate_confs = [ |
| 506 | conffile for conffile in ( |
Vinay Sajip | 27e4b60 | 2012-11-23 19:16:49 +0000 | [diff] [blame] | 507 | os.path.join(exe_dir, conf_basename), |
Vinay Sajip | 7ded1f0 | 2012-05-26 03:45:29 +0100 | [diff] [blame] | 508 | os.path.join(site_prefix, conf_basename) |
| 509 | ) |
| 510 | if os.path.isfile(conffile) |
| 511 | ] |
| 512 | |
| 513 | if candidate_confs: |
| 514 | virtual_conf = candidate_confs[0] |
| 515 | system_site = "true" |
Vinay Sajip | f223c53 | 2015-10-01 11:27:00 +0100 | [diff] [blame] | 516 | # Issue 25185: Use UTF-8, as that's what the venv module uses when |
| 517 | # writing the file. |
| 518 | with open(virtual_conf, encoding='utf-8') as f: |
Vinay Sajip | 7ded1f0 | 2012-05-26 03:45:29 +0100 | [diff] [blame] | 519 | for line in f: |
Serhiy Storchaka | 727ba7c | 2016-11-08 20:17:35 +0200 | [diff] [blame] | 520 | if '=' in line: |
| 521 | key, _, value = line.partition('=') |
| 522 | key = key.strip().lower() |
| 523 | value = value.strip() |
Vinay Sajip | 7ded1f0 | 2012-05-26 03:45:29 +0100 | [diff] [blame] | 524 | if key == 'include-system-site-packages': |
| 525 | system_site = value.lower() |
| 526 | elif key == 'home': |
| 527 | sys._home = value |
| 528 | |
| 529 | sys.prefix = sys.exec_prefix = site_prefix |
| 530 | |
| 531 | # Doing this here ensures venv takes precedence over user-site |
| 532 | addsitepackages(known_paths, [sys.prefix]) |
| 533 | |
| 534 | # addsitepackages will process site_prefix again if its in PREFIXES, |
| 535 | # but that's ok; known_paths will prevent anything being added twice |
| 536 | if system_site == "true": |
| 537 | PREFIXES.insert(0, sys.prefix) |
| 538 | else: |
| 539 | PREFIXES = [sys.prefix] |
| 540 | ENABLE_USER_SITE = False |
| 541 | |
| 542 | return known_paths |
| 543 | |
| 544 | |
Brett Cannon | 0096e26 | 2004-06-05 01:12:51 +0000 | [diff] [blame] | 545 | def execsitecustomize(): |
| 546 | """Run custom site specific code, if available.""" |
| 547 | try: |
Victor Stinner | e3560a7 | 2016-01-22 12:22:07 +0100 | [diff] [blame] | 548 | try: |
| 549 | import sitecustomize |
| 550 | except ImportError as exc: |
| 551 | if exc.name == 'sitecustomize': |
| 552 | pass |
| 553 | else: |
| 554 | raise |
Guido van Rossum | b940e11 | 2007-01-10 16:19:56 +0000 | [diff] [blame] | 555 | except Exception as err: |
Steve Dower | 313523c | 2016-09-17 12:22:41 -0700 | [diff] [blame] | 556 | if sys.flags.verbose: |
Victor Stinner | 52f6dd7 | 2010-03-12 14:45:56 +0000 | [diff] [blame] | 557 | sys.excepthook(*sys.exc_info()) |
| 558 | else: |
| 559 | sys.stderr.write( |
| 560 | "Error in sitecustomize; set PYTHONVERBOSE for traceback:\n" |
| 561 | "%s: %s\n" % |
| 562 | (err.__class__.__name__, err)) |
Martin v. Löwis | 4eab486 | 2003-03-03 09:34:01 +0000 | [diff] [blame] | 563 | |
Martin v. Löwis | 4eab486 | 2003-03-03 09:34:01 +0000 | [diff] [blame] | 564 | |
Christian Heimes | 8dc226f | 2008-05-06 23:45:46 +0000 | [diff] [blame] | 565 | def execusercustomize(): |
| 566 | """Run custom user specific code, if available.""" |
| 567 | try: |
Victor Stinner | e3560a7 | 2016-01-22 12:22:07 +0100 | [diff] [blame] | 568 | try: |
| 569 | import usercustomize |
| 570 | except ImportError as exc: |
| 571 | if exc.name == 'usercustomize': |
| 572 | pass |
| 573 | else: |
| 574 | raise |
Victor Stinner | 52f6dd7 | 2010-03-12 14:45:56 +0000 | [diff] [blame] | 575 | except Exception as err: |
Steve Dower | 313523c | 2016-09-17 12:22:41 -0700 | [diff] [blame] | 576 | if sys.flags.verbose: |
Victor Stinner | 52f6dd7 | 2010-03-12 14:45:56 +0000 | [diff] [blame] | 577 | sys.excepthook(*sys.exc_info()) |
| 578 | else: |
| 579 | sys.stderr.write( |
| 580 | "Error in usercustomize; set PYTHONVERBOSE for traceback:\n" |
| 581 | "%s: %s\n" % |
| 582 | (err.__class__.__name__, err)) |
Christian Heimes | 8dc226f | 2008-05-06 23:45:46 +0000 | [diff] [blame] | 583 | |
| 584 | |
Brett Cannon | 0096e26 | 2004-06-05 01:12:51 +0000 | [diff] [blame] | 585 | def main(): |
Éric Araujo | c09fca6 | 2011-03-23 02:06:24 +0100 | [diff] [blame] | 586 | """Add standard site-specific directories to the module search path. |
| 587 | |
| 588 | This function is called automatically when this module is imported, |
| 589 | unless the python interpreter was started with the -S flag. |
| 590 | """ |
Christian Heimes | 8dc226f | 2008-05-06 23:45:46 +0000 | [diff] [blame] | 591 | global ENABLE_USER_SITE |
| 592 | |
INADA Naoki | 2e4e011 | 2017-03-15 00:52:19 +0900 | [diff] [blame] | 593 | orig_path = sys.path[:] |
Christian Heimes | 8dc226f | 2008-05-06 23:45:46 +0000 | [diff] [blame] | 594 | known_paths = removeduppaths() |
INADA Naoki | 2e4e011 | 2017-03-15 00:52:19 +0900 | [diff] [blame] | 595 | if orig_path != sys.path: |
| 596 | # removeduppaths() might make sys.path absolute. |
| 597 | # fix __file__ and __cached__ of already imported modules too. |
| 598 | abs_paths() |
| 599 | |
Vinay Sajip | 7ded1f0 | 2012-05-26 03:45:29 +0100 | [diff] [blame] | 600 | known_paths = venv(known_paths) |
Christian Heimes | 8dc226f | 2008-05-06 23:45:46 +0000 | [diff] [blame] | 601 | if ENABLE_USER_SITE is None: |
| 602 | ENABLE_USER_SITE = check_enableusersite() |
| 603 | known_paths = addusersitepackages(known_paths) |
| 604 | known_paths = addsitepackages(known_paths) |
Brett Cannon | 0096e26 | 2004-06-05 01:12:51 +0000 | [diff] [blame] | 605 | setquit() |
| 606 | setcopyright() |
| 607 | sethelper() |
Steve Dower | 313523c | 2016-09-17 12:22:41 -0700 | [diff] [blame] | 608 | if not sys.flags.isolated: |
| 609 | enablerlcompleter() |
Brett Cannon | 0096e26 | 2004-06-05 01:12:51 +0000 | [diff] [blame] | 610 | execsitecustomize() |
Christian Heimes | 8dc226f | 2008-05-06 23:45:46 +0000 | [diff] [blame] | 611 | if ENABLE_USER_SITE: |
| 612 | execusercustomize() |
Marc-André Lemburg | 990bbe9 | 2000-06-07 09:12:09 +0000 | [diff] [blame] | 613 | |
Steve Dower | 313523c | 2016-09-17 12:22:41 -0700 | [diff] [blame] | 614 | # Prevent extending of sys.path when python was started with -S and |
Éric Araujo | c09fca6 | 2011-03-23 02:06:24 +0100 | [diff] [blame] | 615 | # site is imported later. |
| 616 | if not sys.flags.no_site: |
| 617 | main() |
Guido van Rossum | f30bec7 | 1997-08-29 22:30:45 +0000 | [diff] [blame] | 618 | |
Christian Heimes | 8dc226f | 2008-05-06 23:45:46 +0000 | [diff] [blame] | 619 | def _script(): |
| 620 | help = """\ |
| 621 | %s [--user-base] [--user-site] |
| 622 | |
| 623 | Without arguments print some useful information |
| 624 | With arguments print the value of USER_BASE and/or USER_SITE separated |
| 625 | by '%s'. |
| 626 | |
| 627 | Exit codes with --user-base or --user-site: |
| 628 | 0 - user site directory is enabled |
Alexandre Vassalotti | 6461e10 | 2008-05-15 22:09:29 +0000 | [diff] [blame] | 629 | 1 - user site directory is disabled by user |
Daniel Andersson | 40c01c3 | 2019-12-14 11:37:58 +0100 | [diff] [blame] | 630 | 2 - user site directory is disabled by super user |
Christian Heimes | 8dc226f | 2008-05-06 23:45:46 +0000 | [diff] [blame] | 631 | or for security reasons |
| 632 | >2 - unknown error |
| 633 | """ |
| 634 | args = sys.argv[1:] |
| 635 | if not args: |
Meador Inge | 9a7a811 | 2013-04-13 20:29:49 -0500 | [diff] [blame] | 636 | user_base = getuserbase() |
| 637 | user_site = getusersitepackages() |
Christian Heimes | 8dc226f | 2008-05-06 23:45:46 +0000 | [diff] [blame] | 638 | print("sys.path = [") |
| 639 | for dir in sys.path: |
| 640 | print(" %r," % (dir,)) |
| 641 | print("]") |
pxinwr | ab74c01 | 2020-12-21 06:27:42 +0800 | [diff] [blame] | 642 | def exists(path): |
| 643 | if path is not None and os.path.isdir(path): |
| 644 | return "exists" |
| 645 | else: |
| 646 | return "doesn't exist" |
| 647 | print(f"USER_BASE: {user_base!r} ({exists(user_base)})") |
| 648 | print(f"USER_SITE: {user_site!r} ({exists(user_site)})") |
| 649 | print(f"ENABLE_USER_SITE: {ENABLE_USER_SITE!r}") |
Christian Heimes | 8dc226f | 2008-05-06 23:45:46 +0000 | [diff] [blame] | 650 | sys.exit(0) |
| 651 | |
| 652 | buffer = [] |
| 653 | if '--user-base' in args: |
| 654 | buffer.append(USER_BASE) |
| 655 | if '--user-site' in args: |
| 656 | buffer.append(USER_SITE) |
| 657 | |
| 658 | if buffer: |
| 659 | print(os.pathsep.join(buffer)) |
| 660 | if ENABLE_USER_SITE: |
| 661 | sys.exit(0) |
| 662 | elif ENABLE_USER_SITE is False: |
| 663 | sys.exit(1) |
| 664 | elif ENABLE_USER_SITE is None: |
| 665 | sys.exit(2) |
| 666 | else: |
| 667 | sys.exit(3) |
| 668 | else: |
| 669 | import textwrap |
| 670 | print(textwrap.dedent(help % (sys.argv[0], os.pathsep))) |
| 671 | sys.exit(10) |
Guido van Rossum | f30bec7 | 1997-08-29 22:30:45 +0000 | [diff] [blame] | 672 | |
| 673 | if __name__ == '__main__': |
Christian Heimes | 8dc226f | 2008-05-06 23:45:46 +0000 | [diff] [blame] | 674 | _script() |