| 
									
										
										
										
											1997-08-29 22:30:45 +00:00
										 |  |  | """Append module search paths for third-party packages to sys.path.
 | 
					
						
							| 
									
										
										
										
											1996-08-17 19:56:26 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1997-08-29 22:30:45 +00:00
										 |  |  | **************************************************************** | 
					
						
							|  |  |  | * This module is automatically imported during initialization. * | 
					
						
							|  |  |  | **************************************************************** | 
					
						
							| 
									
										
										
										
											1996-08-17 19:56:26 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1997-08-29 22:30:45 +00:00
										 |  |  | In earlier versions of Python (up to 1.5a3), scripts or modules that | 
					
						
							|  |  |  | needed to use site-specific modules would place ``import site'' | 
					
						
							|  |  |  | somewhere near the top of their code.  Because of the automatic | 
					
						
							|  |  |  | import, this is no longer necessary (but code that does it still | 
					
						
							|  |  |  | works). | 
					
						
							| 
									
										
										
										
											1996-08-17 19:56:26 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-01-13 18:32:40 +00:00
										 |  |  | This will append site-specific paths to to the module search path.  On | 
					
						
							|  |  |  | Unix, it starts with sys.prefix and sys.exec_prefix (if different) and | 
					
						
							|  |  |  | appends lib/python<version>/site-packages as well as lib/site-python. | 
					
						
							|  |  |  | On other platforms (mainly Mac and Windows), it uses just sys.prefix | 
					
						
							|  |  |  | (and sys.exec_prefix, if different, but this is unlikely).  The | 
					
						
							| 
									
										
										
										
											1997-09-08 02:14:09 +00:00
										 |  |  | resulting directories, if they exist, are appended to sys.path, and | 
					
						
							|  |  |  | also inspected for path configuration files. | 
					
						
							| 
									
										
										
										
											1996-08-17 19:56:26 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1997-08-29 22:30:45 +00:00
										 |  |  | A path configuration file is a file whose name has the form | 
					
						
							|  |  |  | <package>.pth; its contents are additional directories (one per line) | 
					
						
							|  |  |  | to be added to sys.path.  Non-existing directories (or | 
					
						
							|  |  |  | non-directories) are never added to sys.path; no directory is added to | 
					
						
							|  |  |  | sys.path more than once.  Blank lines and lines beginning with | 
					
						
							|  |  |  | \code{#} are skipped. | 
					
						
							| 
									
										
										
										
											1996-08-17 19:56:26 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1997-08-29 22:30:45 +00:00
										 |  |  | For example, suppose sys.prefix and sys.exec_prefix are set to | 
					
						
							| 
									
										
										
										
											1998-11-25 15:57:47 +00:00
										 |  |  | /usr/local and there is a directory /usr/local/lib/python1.5/site-packages | 
					
						
							| 
									
										
										
										
											1997-09-08 02:14:09 +00:00
										 |  |  | with three subdirectories, foo, bar and spam, and two path | 
					
						
							|  |  |  | configuration files, foo.pth and bar.pth.  Assume foo.pth contains the | 
					
						
							|  |  |  | following: | 
					
						
							| 
									
										
										
										
											1997-08-29 22:30:45 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |   # foo package configuration | 
					
						
							|  |  |  |   foo | 
					
						
							|  |  |  |   bar | 
					
						
							|  |  |  |   bletch | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | and bar.pth contains: | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   # bar package configuration | 
					
						
							|  |  |  |   bar | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | Then the following directories are added to sys.path, in this order: | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1997-09-08 02:14:09 +00:00
										 |  |  |   /usr/local/lib/python1.5/site-packages/bar | 
					
						
							|  |  |  |   /usr/local/lib/python1.5/site-packages/foo | 
					
						
							| 
									
										
										
										
											1997-08-29 22:30:45 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | Note that bletch is omitted because it doesn't exist; bar precedes foo | 
					
						
							|  |  |  | because bar.pth comes alphabetically before foo.pth; and spam is | 
					
						
							|  |  |  | omitted because it is not mentioned in either path configuration file. | 
					
						
							| 
									
										
										
										
											1996-08-17 19:56:26 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | After these path manipulations, an attempt is made to import a module | 
					
						
							| 
									
										
										
										
											1997-08-29 22:30:45 +00:00
										 |  |  | named sitecustomize, which can perform arbitrary additional | 
					
						
							|  |  |  | site-specific customizations.  If this import fails with an | 
					
						
							|  |  |  | ImportError exception, it is silently ignored. | 
					
						
							| 
									
										
										
										
											1996-08-17 19:56:26 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | """
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | import sys, os | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1997-08-29 22:30:45 +00:00
										 |  |  | def addsitedir(sitedir): | 
					
						
							|  |  |  |     if sitedir not in sys.path: | 
					
						
							| 
									
										
										
										
											1998-03-26 21:13:24 +00:00
										 |  |  |         sys.path.append(sitedir)        # Add path component | 
					
						
							| 
									
										
										
										
											1997-08-29 22:30:45 +00:00
										 |  |  |     try: | 
					
						
							| 
									
										
										
										
											1998-03-26 21:13:24 +00:00
										 |  |  |         names = os.listdir(sitedir) | 
					
						
							| 
									
										
										
										
											1997-08-29 22:30:45 +00:00
										 |  |  |     except os.error: | 
					
						
							| 
									
										
										
										
											1998-03-26 21:13:24 +00:00
										 |  |  |         return | 
					
						
							| 
									
										
										
										
											1997-08-29 22:30:45 +00:00
										 |  |  |     names = map(os.path.normcase, names) | 
					
						
							|  |  |  |     names.sort() | 
					
						
							|  |  |  |     for name in names: | 
					
						
							| 
									
										
										
										
											1998-03-26 21:13:24 +00:00
										 |  |  |         if name[-4:] == ".pth": | 
					
						
							|  |  |  |             addpackage(sitedir, name) | 
					
						
							| 
									
										
										
										
											1997-08-29 22:30:45 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | def addpackage(sitedir, name): | 
					
						
							|  |  |  |     fullname = os.path.join(sitedir, name) | 
					
						
							|  |  |  |     try: | 
					
						
							| 
									
										
										
										
											1998-03-26 21:13:24 +00:00
										 |  |  |         f = open(fullname) | 
					
						
							| 
									
										
										
										
											1997-08-29 22:30:45 +00:00
										 |  |  |     except IOError: | 
					
						
							| 
									
										
										
										
											1998-03-26 21:13:24 +00:00
										 |  |  |         return | 
					
						
							| 
									
										
										
										
											1997-08-29 22:30:45 +00:00
										 |  |  |     while 1: | 
					
						
							| 
									
										
										
										
											1998-03-26 21:13:24 +00:00
										 |  |  |         dir = f.readline() | 
					
						
							|  |  |  |         if not dir: | 
					
						
							|  |  |  |             break | 
					
						
							|  |  |  |         if dir[0] == '#': | 
					
						
							|  |  |  |             continue | 
					
						
							|  |  |  |         if dir[-1] == '\n': | 
					
						
							|  |  |  |             dir = dir[:-1] | 
					
						
							|  |  |  |         dir = os.path.join(sitedir, dir) | 
					
						
							|  |  |  |         if dir not in sys.path and os.path.exists(dir): | 
					
						
							|  |  |  |             sys.path.append(dir) | 
					
						
							| 
									
										
										
										
											1997-08-29 22:30:45 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | prefixes = [sys.prefix] | 
					
						
							|  |  |  | if sys.exec_prefix != sys.prefix: | 
					
						
							|  |  |  |     prefixes.append(sys.exec_prefix) | 
					
						
							|  |  |  | for prefix in prefixes: | 
					
						
							| 
									
										
										
										
											1996-08-17 19:56:26 +00:00
										 |  |  |     if prefix: | 
					
						
							| 
									
										
										
										
											1998-03-26 21:13:24 +00:00
										 |  |  |         if os.sep == '/': | 
					
						
							|  |  |  |             sitedirs = [os.path.join(prefix, | 
					
						
							|  |  |  |                                      "lib", | 
					
						
							|  |  |  |                                      "python" + sys.version[:3], | 
					
						
							|  |  |  |                                      "site-packages"), | 
					
						
							|  |  |  |                         os.path.join(prefix, "lib", "site-python")] | 
					
						
							|  |  |  |         else: | 
					
						
							|  |  |  |             sitedirs = [prefix] | 
					
						
							|  |  |  |         for sitedir in sitedirs: | 
					
						
							|  |  |  |             if os.path.isdir(sitedir): | 
					
						
							|  |  |  |                 addsitedir(sitedir) | 
					
						
							| 
									
										
										
										
											1996-08-17 19:56:26 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-08-07 18:01:14 +00:00
										 |  |  | # Define new built-ins 'quit' and 'exit'. | 
					
						
							|  |  |  | # These are simply strings that display a hint on how to exit. | 
					
						
							|  |  |  | if os.sep == ':': | 
					
						
							|  |  |  |     exit = 'Use Cmd-Q to quit.' | 
					
						
							|  |  |  | elif os.sep == '\\': | 
					
						
							|  |  |  |     exit = 'Use Ctrl-Z plus Return to exit.' | 
					
						
							|  |  |  | else: | 
					
						
							|  |  |  |     exit = 'Use Ctrl-D (i.e. EOF) to exit.' | 
					
						
							|  |  |  | import __builtin__ | 
					
						
							|  |  |  | __builtin__.quit = __builtin__.exit = exit | 
					
						
							|  |  |  | del exit | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-08-17 19:56:26 +00:00
										 |  |  | try: | 
					
						
							| 
									
										
										
										
											1998-03-26 21:13:24 +00:00
										 |  |  |     import sitecustomize                # Run arbitrary site specific code | 
					
						
							| 
									
										
										
										
											1996-08-17 19:56:26 +00:00
										 |  |  | except ImportError: | 
					
						
							| 
									
										
										
										
											1998-03-26 21:13:24 +00:00
										 |  |  |     pass                                # No site customization module | 
					
						
							| 
									
										
										
										
											1997-08-29 22:30:45 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | def _test(): | 
					
						
							|  |  |  |     print "sys.path = [" | 
					
						
							|  |  |  |     for dir in sys.path: | 
					
						
							| 
									
										
										
										
											1998-03-26 21:13:24 +00:00
										 |  |  |         print "    %s," % `dir` | 
					
						
							| 
									
										
										
										
											1997-08-29 22:30:45 +00:00
										 |  |  |     print "]" | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | if __name__ == '__main__': | 
					
						
							|  |  |  |     _test() |