mirror of
				https://github.com/python/cpython.git
				synced 2025-10-31 13:41:24 +00:00 
			
		
		
		
	Oops, there was a bug in the output formatting - the last printed
values would overwrite the next value.
This commit is contained in:
		
							parent
							
								
									1acceb0650
								
							
						
					
					
						commit
						939e4c1efb
					
				
					 1 changed files with 2 additions and 2 deletions
				
			
		|  | @ -114,8 +114,8 @@ def format_output(database): | |||
| 	if text != prevtext: | ||||
| 	    if prev: | ||||
| 		print sep2, | ||||
| 		for (date, working_file, rev) in prev: | ||||
| 		    print date, working_file | ||||
| 		for (p_date, p_working_file, p_rev) in prev: | ||||
| 		    print p_date, p_working_file | ||||
| 		sys.stdout.writelines(prevtext) | ||||
| 	    prev = [] | ||||
| 	prev.append((date, working_file, rev)) | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue
	
	 Guido van Rossum
						Guido van Rossum