mirror of
				https://github.com/python/cpython.git
				synced 2025-10-30 21:21:22 +00:00 
			
		
		
		
	stupid typo in latest fix ('Name' should be 'name')
This commit is contained in:
		
							parent
							
								
									524e9a450b
								
							
						
					
					
						commit
						5468a7b76b
					
				
					 2 changed files with 2 additions and 2 deletions
				
			
		|  | @ -167,7 +167,7 @@ def focus_none(self): | |||
| 		self.tk.call('focus', 'none') | ||||
| 	def focus_get(self): | ||||
| 		name = self.tk.call('focus') | ||||
| 		if name == 'none' or not Name: return None | ||||
| 		if name == 'none' or not name: return None | ||||
| 		return self._nametowidget(name) | ||||
| 	def tk_focusNext(self): | ||||
| 		name = self.tk.call('tk_focusNext', self._w) | ||||
|  |  | |||
|  | @ -167,7 +167,7 @@ def focus_none(self): | |||
| 		self.tk.call('focus', 'none') | ||||
| 	def focus_get(self): | ||||
| 		name = self.tk.call('focus') | ||||
| 		if name == 'none' or not Name: return None | ||||
| 		if name == 'none' or not name: return None | ||||
| 		return self._nametowidget(name) | ||||
| 	def tk_focusNext(self): | ||||
| 		name = self.tk.call('tk_focusNext', self._w) | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue
	
	 Guido van Rossum
						Guido van Rossum