| 
									
										
										
										
											2009-05-06 03:38:31 +00:00
										 |  |  | import os.path | 
					
						
							|  |  |  | import sys | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-09-30 02:56:46 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-09-30 02:53:44 -04:00
										 |  |  | # Enable running IDLE with idlelib in a non-standard location. | 
					
						
							|  |  |  | # This was once used to run development versions of IDLE. | 
					
						
							|  |  |  | # Because PEP 434 declared idle.py a public interface, | 
					
						
							|  |  |  | # removal should require deprecation. | 
					
						
							| 
									
										
										
										
											2009-05-06 03:38:31 +00:00
										 |  |  | idlelib_dir = os.path.dirname(os.path.dirname(os.path.abspath(__file__))) | 
					
						
							| 
									
										
										
										
											2016-09-30 02:53:44 -04:00
										 |  |  | if idlelib_dir not in sys.path: | 
					
						
							|  |  |  |     sys.path.insert(0, idlelib_dir) | 
					
						
							| 
									
										
										
										
											2009-05-06 03:38:31 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-09-30 02:56:46 -04:00
										 |  |  | from idlelib.pyshell import main  # This is subject to change | 
					
						
							| 
									
										
										
										
											2016-09-30 02:53:44 -04:00
										 |  |  | main() |