mirror of
				https://github.com/python/cpython.git
				synced 2025-11-04 03:44:55 +00:00 
			
		
		
		
	IDLE modules have main() or test() functions which are essential for testing. M idlelib/AutoCompleteWindow.py M idlelib/UndoDelegator.py M idlelib/Bindings.py M idlelib/AutoComplete.py M idlelib/configHandler.py M idlelib/HyperParser.py M idlelib/ColorDelegator.py M idlelib/ObjectBrowser.py M idlelib/ZoomHeight.py M idlelib/PyShell.py M idlelib/ParenMatch.py M idlelib/Debugger.py M idlelib/configDialog.py M idlelib/StackViewer.py M idlelib/ReplaceDialog.py M idlelib/ScriptBinding.py M idlelib/GrepDialog.py M idlelib/EditorWindow.py M idlelib/FormatParagraph.py M idlelib/OutputWindow.py M idlelib/aboutDialog.py M idlelib/IdleHistory.py M idlelib/PathBrowser.py M idlelib/ClassBrowser.py M idlelib/CallTips.py M idlelib/FileList.py M idlelib/idle.py M idlelib/CodeContext.py M idlelib/SearchDialog.py M idlelib/RemoteObjectBrowser.py M idlelib/RemoteDebugger.py M idlelib/TreeWidget.py M idlelib/run.py M idlelib/Percolator.py M idlelib/macosxSupport.py
		
			
				
	
	
		
			22 lines
		
	
	
	
		
			742 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
	
		
			742 B
		
	
	
	
		
			Python
		
	
	
	
	
	
try:
 | 
						|
    import idlelib, idlelib.PyShell
 | 
						|
except ImportError:
 | 
						|
    # IDLE is not installed, but maybe PyShell is on sys.path:
 | 
						|
    print("*** idle.py import error! Trying alternate approach....")
 | 
						|
    try:
 | 
						|
        import PyShell
 | 
						|
    except ImportError:
 | 
						|
        raise
 | 
						|
    else:
 | 
						|
        import os
 | 
						|
        idledir = os.path.dirname(os.path.abspath(PyShell.__file__))
 | 
						|
        if idledir != os.getcwd():
 | 
						|
            # We're not in the IDLE directory, help the subprocess find run.py
 | 
						|
            pypath = os.environ.get('PYTHONPATH', '')
 | 
						|
            if pypath:
 | 
						|
                os.environ['PYTHONPATH'] = pypath + ':' + idledir
 | 
						|
            else:
 | 
						|
                os.environ['PYTHONPATH'] = idledir
 | 
						|
        PyShell.main()
 | 
						|
else:
 | 
						|
    idlelib.PyShell.main()
 |