mirror of
				https://github.com/python/cpython.git
				synced 2025-10-31 05:31:20 +00:00 
			
		
		
		
	Remove usage of sets module (patch #1500609).
This commit is contained in:
		
							parent
							
								
									83fa22f564
								
							
						
					
					
						commit
						7b71bf3872
					
				
					 4 changed files with 6 additions and 9 deletions
				
			
		|  | @ -11,11 +11,10 @@ | |||
| """ | ||||
| import Tkinter | ||||
| from configHandler import idleConf | ||||
| from sets import Set | ||||
| import re | ||||
| from sys import maxint as INFINITY | ||||
| 
 | ||||
| BLOCKOPENERS = Set(["class", "def", "elif", "else", "except", "finally", "for", | ||||
| BLOCKOPENERS = set(["class", "def", "elif", "else", "except", "finally", "for", | ||||
|                     "if", "try", "while"]) | ||||
| UPDATEINTERVAL = 100 # millisec | ||||
| FONTUPDATEINTERVAL = 1000 # millisec | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue
	
	 Georg Brandl
						Georg Brandl