mirror of
				https://github.com/python/cpython.git
				synced 2025-10-31 21:51:50 +00:00 
			
		
		
		
	Change to always call list.append with a single argument.
This does not mean I still support this code!!!
This commit is contained in:
		
							parent
							
								
									2715bb20db
								
							
						
					
					
						commit
						3159e1e1ef
					
				
					 2 changed files with 2 additions and 2 deletions
				
			
		|  | @ -229,7 +229,7 @@ def demo(): # Demonstration | |||
| 	col1 = [('a2', da), ('bbb2', da)] | ||||
| 	col2 = [('a3', da), ('b3', da), ('c3', da), ('d4', da), ('d5', da)] | ||||
| 	col3 = [] | ||||
| 	for i in range(1, 31): col3.append('xxx' + `i`, da) | ||||
| 	for i in range(1, 31): col3.append(('xxx' + `i`, da)) | ||||
| 	data = [col0, col1, col2, col3] | ||||
| 	w = open('tablewin.demo', data) | ||||
| 	gwin.mainloop() | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue
	
	 Guido van Rossum
						Guido van Rossum