mirror of
				https://github.com/python/cpython.git
				synced 2025-10-31 13:41:24 +00:00 
			
		
		
		
	Yet another mini fix to pack/grid info.
This commit is contained in:
		
							parent
							
								
									6878436366
								
							
						
					
					
						commit
						a5f875f504
					
				
					 2 changed files with 4 additions and 4 deletions
				
			
		|  | @ -668,7 +668,7 @@ def info(self): | |||
| 		for i in range(0, len(words), 2): | ||||
| 			key = words[i][1:] | ||||
| 			value = words[i+1] | ||||
| 			if value[0] == '.': | ||||
| 			if value[:1] == '.': | ||||
| 				value = self._nametowidget(value) | ||||
| 			dict[key] = value | ||||
| 		return dict | ||||
|  | @ -745,7 +745,7 @@ def info(self): | |||
| 		for i in range(0, len(words), 2): | ||||
| 			key = words[i][1:] | ||||
| 			value = words[i+1] | ||||
| 			if value[0] == '.': | ||||
| 			if value[:1] == '.': | ||||
| 				value = self._nametowidget(value) | ||||
| 			dict[key] = value | ||||
| 		return dict | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue
	
	 Guido van Rossum
						Guido van Rossum