mirror of
				https://github.com/python/cpython.git
				synced 2025-10-31 13:41:24 +00:00 
			
		
		
		
	Whitespace normalization, via reindent.py.
This commit is contained in:
		
							parent
							
								
									e6ddc8b20b
								
							
						
					
					
						commit
						182b5aca27
					
				
					 453 changed files with 31318 additions and 31452 deletions
				
			
		|  | @ -206,7 +206,7 @@ def runtime_library_dir_option(self, dir): | |||
|         elif sys.platform[:5] == "hp-ux": | ||||
|             return "+s -L" + dir | ||||
|         elif compiler[:3] == "gcc" or compiler[:3] == "g++": | ||||
|           return "-Wl,-R" + dir | ||||
|             return "-Wl,-R" + dir | ||||
|         else: | ||||
|             return "-R" + dir | ||||
| 
 | ||||
|  | @ -217,7 +217,7 @@ def find_library_file(self, dirs, lib, debug=0): | |||
|         shared_f = self.library_filename(lib, lib_type='shared') | ||||
|         dylib_f = self.library_filename(lib, lib_type='dylib') | ||||
|         static_f = self.library_filename(lib, lib_type='static') | ||||
|          | ||||
| 
 | ||||
|         for dir in dirs: | ||||
|             shared = os.path.join(dir, shared_f) | ||||
|             dylib = os.path.join(dir, dylib_f) | ||||
|  | @ -232,6 +232,6 @@ def find_library_file(self, dirs, lib, debug=0): | |||
|                 return shared | ||||
|             elif os.path.exists(static): | ||||
|                 return static | ||||
|              | ||||
| 
 | ||||
|         # Oops, didn't find it in *any* of 'dirs' | ||||
|         return None | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue
	
	 Tim Peters
						Tim Peters