blob: f8c000a6788d441e4db28574311d260de182a734 [file] [log] [blame]
Guido van Rossumf30bec71997-08-29 22:30:45 +00001"""Append module search paths for third-party packages to sys.path.
Guido van Rossume57c96e1996-08-17 19:56:26 +00002
Guido van Rossumf30bec71997-08-29 22:30:45 +00003****************************************************************
4* This module is automatically imported during initialization. *
5****************************************************************
Guido van Rossume57c96e1996-08-17 19:56:26 +00006
Guido van Rossumf30bec71997-08-29 22:30:45 +00007In earlier versions of Python (up to 1.5a3), scripts or modules that
8needed to use site-specific modules would place ``import site''
9somewhere near the top of their code. Because of the automatic
10import, this is no longer necessary (but code that does it still
11works).
Guido van Rossume57c96e1996-08-17 19:56:26 +000012
Walter Dörwaldf0dfc7a2003-10-20 14:01:56 +000013This will append site-specific paths to the module search path. On
Guido van Rossum0d8fcb21998-01-13 18:32:40 +000014Unix, it starts with sys.prefix and sys.exec_prefix (if different) and
15appends lib/python<version>/site-packages as well as lib/site-python.
16On other platforms (mainly Mac and Windows), it uses just sys.prefix
Barry Warsaw6e1c5762001-12-17 15:40:24 +000017(and sys.exec_prefix, if different, but this is unlikely). The
Guido van Rossum62b297b1997-09-08 02:14:09 +000018resulting directories, if they exist, are appended to sys.path, and
19also inspected for path configuration files.
Guido van Rossume57c96e1996-08-17 19:56:26 +000020
Guido van Rossumf30bec71997-08-29 22:30:45 +000021A path configuration file is a file whose name has the form
22<package>.pth; its contents are additional directories (one per line)
23to be added to sys.path. Non-existing directories (or
24non-directories) are never added to sys.path; no directory is added to
25sys.path more than once. Blank lines and lines beginning with
Guido van Rossumfacf24b2001-12-17 16:07:06 +000026'#' are skipped. Lines starting with 'import' are executed.
Guido van Rossume57c96e1996-08-17 19:56:26 +000027
Guido van Rossumf30bec71997-08-29 22:30:45 +000028For example, suppose sys.prefix and sys.exec_prefix are set to
Guido van Rossume7201761998-11-25 15:57:47 +000029/usr/local and there is a directory /usr/local/lib/python1.5/site-packages
Guido van Rossum62b297b1997-09-08 02:14:09 +000030with three subdirectories, foo, bar and spam, and two path
31configuration files, foo.pth and bar.pth. Assume foo.pth contains the
32following:
Guido van Rossumf30bec71997-08-29 22:30:45 +000033
34 # foo package configuration
35 foo
36 bar
37 bletch
38
39and bar.pth contains:
40
41 # bar package configuration
42 bar
43
44Then the following directories are added to sys.path, in this order:
45
Guido van Rossum62b297b1997-09-08 02:14:09 +000046 /usr/local/lib/python1.5/site-packages/bar
47 /usr/local/lib/python1.5/site-packages/foo
Guido van Rossumf30bec71997-08-29 22:30:45 +000048
49Note that bletch is omitted because it doesn't exist; bar precedes foo
50because bar.pth comes alphabetically before foo.pth; and spam is
51omitted because it is not mentioned in either path configuration file.
Guido van Rossume57c96e1996-08-17 19:56:26 +000052
53After these path manipulations, an attempt is made to import a module
Guido van Rossumf30bec71997-08-29 22:30:45 +000054named sitecustomize, which can perform arbitrary additional
55site-specific customizations. If this import fails with an
56ImportError exception, it is silently ignored.
Guido van Rossume57c96e1996-08-17 19:56:26 +000057
Guido van Rossume57c96e1996-08-17 19:56:26 +000058"""
59
60import sys, os
61
Guido van Rossumd74fb6b2001-03-02 06:43:49 +000062
Fred Drake38cb9f12000-09-28 16:52:36 +000063def makepath(*paths):
Fred Drake1fb5ce02001-07-02 16:55:42 +000064 dir = os.path.abspath(os.path.join(*paths))
65 return dir, os.path.normcase(dir)
Fred Drake38cb9f12000-09-28 16:52:36 +000066
Fred Drake1fb5ce02001-07-02 16:55:42 +000067for m in sys.modules.values():
Barry Warsaw62d24882001-03-23 17:53:49 +000068 if hasattr(m, "__file__") and m.__file__:
Fred Drake1fb5ce02001-07-02 16:55:42 +000069 m.__file__ = os.path.abspath(m.__file__)
70del m
Fred Drake38cb9f12000-09-28 16:52:36 +000071
72# This ensures that the initial path provided by the interpreter contains
73# only absolute pathnames, even if we're running from the build directory.
74L = []
Fred Drake7f5296e2001-07-20 20:06:17 +000075_dirs_in_sys_path = {}
Just van Rossum52e14d62002-12-30 22:08:05 +000076dir = dircase = None # sys.path may be empty at this point
Fred Drake38cb9f12000-09-28 16:52:36 +000077for dir in sys.path:
Just van Rossum52e14d62002-12-30 22:08:05 +000078 # Filter out duplicate paths (on case-insensitive file systems also
79 # if they only differ in case); turn relative paths into absolute
80 # paths.
Fred Drake1fb5ce02001-07-02 16:55:42 +000081 dir, dircase = makepath(dir)
Raymond Hettinger54f02222002-06-01 14:18:47 +000082 if not dircase in _dirs_in_sys_path:
Fred Drake38cb9f12000-09-28 16:52:36 +000083 L.append(dir)
Fred Drake7f5296e2001-07-20 20:06:17 +000084 _dirs_in_sys_path[dircase] = 1
Fred Drake38cb9f12000-09-28 16:52:36 +000085sys.path[:] = L
Neal Norwitz34172d52002-02-11 18:34:41 +000086del dir, dircase, L
Fred Drake38cb9f12000-09-28 16:52:36 +000087
Guido van Rossum48eb9cd2001-01-19 21:54:59 +000088# Append ./build/lib.<platform> in case we're running in the build dir
89# (especially for Guido :-)
Fred Drakee80c0d32002-07-25 20:13:03 +000090# XXX This should not be part of site.py, since it is needed even when
91# using the -S option for Python. See http://www.python.org/sf/586680
Tim Peters230a60c2002-11-09 05:08:07 +000092if (os.name == "posix" and sys.path and
Marc-André Lemburg7ccd30f2002-09-19 11:11:27 +000093 os.path.basename(sys.path[-1]) == "Modules"):
Jeremy Hylton6d58bf62003-07-18 17:45:33 +000094 from distutils.util import get_platform
95 s = "build/lib.%s-%.3s" % (get_platform(), sys.version)
Guido van Rossum48eb9cd2001-01-19 21:54:59 +000096 s = os.path.join(os.path.dirname(sys.path[-1]), s)
97 sys.path.append(s)
Jeremy Hylton6d58bf62003-07-18 17:45:33 +000098 del get_platform, s
Guido van Rossum48eb9cd2001-01-19 21:54:59 +000099
Fred Drake7f5296e2001-07-20 20:06:17 +0000100def _init_pathinfo():
101 global _dirs_in_sys_path
102 _dirs_in_sys_path = d = {}
103 for dir in sys.path:
104 if dir and not os.path.isdir(dir):
105 continue
106 dir, dircase = makepath(dir)
107 d[dircase] = 1
108
Guido van Rossumf30bec71997-08-29 22:30:45 +0000109def addsitedir(sitedir):
Fred Drake7f5296e2001-07-20 20:06:17 +0000110 global _dirs_in_sys_path
111 if _dirs_in_sys_path is None:
112 _init_pathinfo()
113 reset = 1
114 else:
115 reset = 0
Fred Drake1fb5ce02001-07-02 16:55:42 +0000116 sitedir, sitedircase = makepath(sitedir)
Raymond Hettinger54f02222002-06-01 14:18:47 +0000117 if not sitedircase in _dirs_in_sys_path:
Guido van Rossum45e2fbc1998-03-26 21:13:24 +0000118 sys.path.append(sitedir) # Add path component
Guido van Rossumf30bec71997-08-29 22:30:45 +0000119 try:
Guido van Rossum45e2fbc1998-03-26 21:13:24 +0000120 names = os.listdir(sitedir)
Guido van Rossumf30bec71997-08-29 22:30:45 +0000121 except os.error:
Guido van Rossum45e2fbc1998-03-26 21:13:24 +0000122 return
Guido van Rossumf30bec71997-08-29 22:30:45 +0000123 names.sort()
124 for name in names:
Guido van Rossume2ae77b2001-10-24 20:42:55 +0000125 if name[-4:] == os.extsep + "pth":
Guido van Rossum45e2fbc1998-03-26 21:13:24 +0000126 addpackage(sitedir, name)
Fred Drake7f5296e2001-07-20 20:06:17 +0000127 if reset:
128 _dirs_in_sys_path = None
Guido van Rossumf30bec71997-08-29 22:30:45 +0000129
130def addpackage(sitedir, name):
Fred Drake7f5296e2001-07-20 20:06:17 +0000131 global _dirs_in_sys_path
132 if _dirs_in_sys_path is None:
133 _init_pathinfo()
134 reset = 1
135 else:
136 reset = 0
Guido van Rossumf30bec71997-08-29 22:30:45 +0000137 fullname = os.path.join(sitedir, name)
138 try:
Guido van Rossum45e2fbc1998-03-26 21:13:24 +0000139 f = open(fullname)
Guido van Rossumf30bec71997-08-29 22:30:45 +0000140 except IOError:
Guido van Rossum45e2fbc1998-03-26 21:13:24 +0000141 return
Guido van Rossumf30bec71997-08-29 22:30:45 +0000142 while 1:
Guido van Rossum45e2fbc1998-03-26 21:13:24 +0000143 dir = f.readline()
144 if not dir:
145 break
146 if dir[0] == '#':
147 continue
Martin v. Löwisbb0a4b72001-01-11 13:02:43 +0000148 if dir.startswith("import"):
149 exec dir
150 continue
Guido van Rossum45e2fbc1998-03-26 21:13:24 +0000151 if dir[-1] == '\n':
152 dir = dir[:-1]
Fred Drake1fb5ce02001-07-02 16:55:42 +0000153 dir, dircase = makepath(sitedir, dir)
Raymond Hettinger54f02222002-06-01 14:18:47 +0000154 if not dircase in _dirs_in_sys_path and os.path.exists(dir):
Guido van Rossum45e2fbc1998-03-26 21:13:24 +0000155 sys.path.append(dir)
Fred Drake7f5296e2001-07-20 20:06:17 +0000156 _dirs_in_sys_path[dircase] = 1
157 if reset:
158 _dirs_in_sys_path = None
Guido van Rossumf30bec71997-08-29 22:30:45 +0000159
160prefixes = [sys.prefix]
Jeremy Hyltonbdf3b502003-07-18 17:24:07 +0000161sitedir = None # make sure sitedir is initialized because of later 'del'
Guido van Rossumf30bec71997-08-29 22:30:45 +0000162if sys.exec_prefix != sys.prefix:
163 prefixes.append(sys.exec_prefix)
164for prefix in prefixes:
Guido van Rossume57c96e1996-08-17 19:56:26 +0000165 if prefix:
Martin v. Löwisa94568a2003-05-10 07:36:56 +0000166 if sys.platform in ('os2emx', 'riscos'):
Andrew MacIntyre5cef5712002-02-24 05:32:32 +0000167 sitedirs = [os.path.join(prefix, "Lib", "site-packages")]
168 elif os.sep == '/':
Fred Drake1fb5ce02001-07-02 16:55:42 +0000169 sitedirs = [os.path.join(prefix,
170 "lib",
171 "python" + sys.version[:3],
172 "site-packages"),
173 os.path.join(prefix, "lib", "site-python")]
Guido van Rossum45e2fbc1998-03-26 21:13:24 +0000174 else:
Tim Peters6a479f52001-07-12 05:20:13 +0000175 sitedirs = [prefix, os.path.join(prefix, "lib", "site-packages")]
Jack Jansenbe5d7072003-04-16 13:12:21 +0000176 if sys.platform == 'darwin':
177 # for framework builds *only* we add the standard Apple
178 # locations. Currently only per-user, but /Library and
179 # /Network/Library could be added too
180 if 'Python.framework' in prefix:
Jack Jansen470b0c02003-06-03 10:55:35 +0000181 home = os.environ.get('HOME')
Jack Jansenbe5d7072003-04-16 13:12:21 +0000182 if home:
183 sitedirs.append(
184 os.path.join(home,
185 'Library',
186 'Python',
187 sys.version[:3],
188 'site-packages'))
Guido van Rossum45e2fbc1998-03-26 21:13:24 +0000189 for sitedir in sitedirs:
190 if os.path.isdir(sitedir):
191 addsitedir(sitedir)
Neal Norwitz34172d52002-02-11 18:34:41 +0000192del prefix, sitedir
Guido van Rossume57c96e1996-08-17 19:56:26 +0000193
Fred Drake7f5296e2001-07-20 20:06:17 +0000194_dirs_in_sys_path = None
195
Fred Drake1fb5ce02001-07-02 16:55:42 +0000196
Andrew MacIntyre2e8a6e02003-12-02 12:27:25 +0000197# the OS/2 EMX port has optional extension modules that do double duty
198# as DLLs (and must use the .DLL file extension) for other extensions.
199# The library search path needs to be amended so these will be found
200# during module import. Use BEGINLIBPATH so that these are at the start
201# of the library search path.
202if sys.platform == 'os2emx':
203 dllpath = os.path.join(sys.prefix, "Lib", "lib-dynload")
204 libpath = os.environ['BEGINLIBPATH'].split(';')
205 if libpath[-1]:
206 libpath.append(dllpath)
207 else:
208 libpath[-1] = dllpath
209 os.environ['BEGINLIBPATH'] = ';'.join(libpath)
210
211
Guido van Rossumd89fa0c1998-08-07 18:01:14 +0000212# Define new built-ins 'quit' and 'exit'.
213# These are simply strings that display a hint on how to exit.
214if os.sep == ':':
215 exit = 'Use Cmd-Q to quit.'
216elif os.sep == '\\':
217 exit = 'Use Ctrl-Z plus Return to exit.'
218else:
219 exit = 'Use Ctrl-D (i.e. EOF) to exit.'
220import __builtin__
221__builtin__.quit = __builtin__.exit = exit
222del exit
223
Guido van Rossumd1252392000-09-05 04:39:55 +0000224# interactive prompt objects for printing the license text, a list of
225# contributors and the copyright notice.
226class _Printer:
227 MAXLINES = 23
228
Guido van Rossumf19a7ac2000-10-03 17:11:37 +0000229 def __init__(self, name, data, files=(), dirs=()):
230 self.__name = name
231 self.__data = data
232 self.__files = files
233 self.__dirs = dirs
234 self.__lines = None
235
236 def __setup(self):
237 if self.__lines:
238 return
239 data = None
240 for dir in self.__dirs:
241 for file in self.__files:
242 file = os.path.join(dir, file)
243 try:
244 fp = open(file)
245 data = fp.read()
246 fp.close()
247 break
248 except IOError:
249 pass
250 if data:
251 break
252 if not data:
253 data = self.__data
254 self.__lines = data.split('\n')
Guido van Rossumd1252392000-09-05 04:39:55 +0000255 self.__linecnt = len(self.__lines)
256
257 def __repr__(self):
Guido van Rossumf19a7ac2000-10-03 17:11:37 +0000258 self.__setup()
259 if len(self.__lines) <= self.MAXLINES:
260 return "\n".join(self.__lines)
261 else:
262 return "Type %s() to see the full %s text" % ((self.__name,)*2)
263
264 def __call__(self):
265 self.__setup()
Guido van Rossumd1252392000-09-05 04:39:55 +0000266 prompt = 'Hit Return for more, or q (and Return) to quit: '
267 lineno = 0
268 while 1:
269 try:
270 for i in range(lineno, lineno + self.MAXLINES):
271 print self.__lines[i]
272 except IndexError:
273 break
274 else:
275 lineno += self.MAXLINES
276 key = None
277 while key is None:
278 key = raw_input(prompt)
279 if key not in ('', 'q'):
280 key = None
281 if key == 'q':
282 break
Guido van Rossumd1252392000-09-05 04:39:55 +0000283
Guido van Rossumf19a7ac2000-10-03 17:11:37 +0000284__builtin__.copyright = _Printer("copyright", sys.copyright)
Barry Warsaw23f26ce2000-12-06 22:20:07 +0000285if sys.platform[:4] == 'java':
286 __builtin__.credits = _Printer(
287 "credits",
288 "Jython is maintained by the Jython developers (www.jython.org).")
289else:
290 __builtin__.credits = _Printer("credits", """\
Guido van Rossum2e1c09c2002-04-04 17:52:50 +0000291Thanks to CWI, CNRI, BeOpen.com, Zope Corporation and a cast of thousands
Barry Warsaw23f26ce2000-12-06 22:20:07 +0000292for supporting Python development. See www.python.org for more information.""")
Guido van Rossumd1252392000-09-05 04:39:55 +0000293here = os.path.dirname(os.__file__)
Guido van Rossumf19a7ac2000-10-03 17:11:37 +0000294__builtin__.license = _Printer(
Guido van Rossume37e96d2001-10-02 18:27:09 +0000295 "license", "See http://www.python.org/%.3s/license.html" % sys.version,
Guido van Rossumf19a7ac2000-10-03 17:11:37 +0000296 ["LICENSE.txt", "LICENSE"],
Barry Warsaw62d24882001-03-23 17:53:49 +0000297 [os.path.join(here, os.pardir), here, os.curdir])
Guido van Rossumd1252392000-09-05 04:39:55 +0000298
299
Guido van Rossum83213cc2001-06-12 16:48:52 +0000300# Define new built-in 'help'.
301# This is a wrapper around pydoc.help (with a twist).
302
303class _Helper:
304 def __repr__(self):
305 return "Type help() for interactive help, " \
306 "or help(object) for help about object."
307 def __call__(self, *args, **kwds):
308 import pydoc
309 return pydoc.help(*args, **kwds)
310
311__builtin__.help = _Helper()
312
313
Hye-Shik Chang4a8d42f2004-02-13 07:14:13 +0000314# On Windows, some default encodings are not provided by Python,
315# while they are always available as "mbcs" in each locale. Make
316# them usable by aliasing to "mbcs" in such a case.
Martin v. Löwis4eab4862003-03-03 09:34:01 +0000317
318if sys.platform == 'win32':
319 import locale, codecs
320 enc = locale.getdefaultlocale()[1]
321 if enc.startswith('cp'): # "cp***" ?
322 try:
323 codecs.lookup(enc)
324 except LookupError:
325 import encodings
326 encodings._cache[enc] = encodings._unknown
327 encodings.aliases.aliases[enc] = 'mbcs'
328
Fredrik Lundh3fded4b2000-07-15 20:58:44 +0000329# Set the string encoding used by the Unicode implementation. The
330# default is 'ascii', but if you're willing to experiment, you can
331# change this.
Marc-André Lemburg990bbe92000-06-07 09:12:09 +0000332
Marc-André Lemburg09cad082000-09-18 11:06:00 +0000333encoding = "ascii" # Default value set by _PyUnicode_Init()
Fredrik Lundh47ac1262000-07-15 20:45:23 +0000334
335if 0:
Marc-André Lemburg990bbe92000-06-07 09:12:09 +0000336 # Enable to support locale aware default string encodings.
Fredrik Lundh47ac1262000-07-15 20:45:23 +0000337 import locale
338 loc = locale.getdefaultlocale()
339 if loc[1]:
340 encoding = loc[1]
341
342if 0:
Marc-André Lemburg990bbe92000-06-07 09:12:09 +0000343 # Enable to switch off string to Unicode coercion and implicit
344 # Unicode to string conversion.
Fredrik Lundh47ac1262000-07-15 20:45:23 +0000345 encoding = "undefined"
346
Marc-André Lemburg09cad082000-09-18 11:06:00 +0000347if encoding != "ascii":
Martin v. Löwis339d0f72001-08-17 18:39:25 +0000348 # On Non-Unicode builds this will raise an AttributeError...
349 sys.setdefaultencoding(encoding) # Needs Python Unicode build !
Marc-André Lemburg990bbe92000-06-07 09:12:09 +0000350
351#
352# Run custom site specific code, if available.
353#
Guido van Rossume57c96e1996-08-17 19:56:26 +0000354try:
Marc-André Lemburg990bbe92000-06-07 09:12:09 +0000355 import sitecustomize
Guido van Rossume57c96e1996-08-17 19:56:26 +0000356except ImportError:
Marc-André Lemburg990bbe92000-06-07 09:12:09 +0000357 pass
358
359#
360# Remove sys.setdefaultencoding() so that users cannot change the
Fred Drake38cb9f12000-09-28 16:52:36 +0000361# encoding after initialization. The test for presence is needed when
Barry Warsaw23f26ce2000-12-06 22:20:07 +0000362# this module is run as a script, because this code is executed twice.
Marc-André Lemburg990bbe92000-06-07 09:12:09 +0000363#
Fred Drake38cb9f12000-09-28 16:52:36 +0000364if hasattr(sys, "setdefaultencoding"):
365 del sys.setdefaultencoding
Guido van Rossumf30bec71997-08-29 22:30:45 +0000366
367def _test():
368 print "sys.path = ["
369 for dir in sys.path:
Walter Dörwald70a6b492004-02-12 17:35:32 +0000370 print " %r," % (dir,)
Guido van Rossumf30bec71997-08-29 22:30:45 +0000371 print "]"
372
373if __name__ == '__main__':
374 _test()