mirror of
				https://github.com/python/cpython.git
				synced 2025-11-04 11:49:12 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
	
		
			290 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
	
		
			290 B
		
	
	
	
		
			Python
		
	
	
	
	
	
# -*- coding: utf-8 -*-
 | 
						|
"""
 | 
						|
    Sphinx - Python documentation webserver
 | 
						|
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 | 
						|
 | 
						|
    :copyright: 2007 by Georg Brandl.
 | 
						|
    :license: Python license.
 | 
						|
"""
 | 
						|
 | 
						|
import sys
 | 
						|
 | 
						|
if __name__ == '__main__':
 | 
						|
    from sphinx.web import main
 | 
						|
    sys.exit(main(sys.argv))
 |