mirror of
				https://github.com/python/cpython.git
				synced 2025-10-31 13:41:24 +00:00 
			
		
		
		
	Repair accidental NameError.
This commit is contained in:
		
							parent
							
								
									a2946a437e
								
							
						
					
					
						commit
						afb44f47d9
					
				
					 1 changed files with 2 additions and 1 deletions
				
			
		|  | @ -179,13 +179,14 @@ def format_exception_only(etype, value): | |||
|         return [_format_final_exc_line(stype, value)] | ||||
| 
 | ||||
|     # It was a syntax error; show exactly where the problem was found. | ||||
|     lines = [] | ||||
|     try: | ||||
|         msg, (filename, lineno, offset, badline) = value | ||||
|     except Exception: | ||||
|         pass | ||||
|     else: | ||||
|         filename = filename or "<string>" | ||||
|         lines = [('  File "%s", line %d\n' % (filename, lineno))] | ||||
|         lines.append('  File "%s", line %d\n' % (filename, lineno)) | ||||
|         if badline is not None: | ||||
|             lines.append('    %s\n' % badline.strip()) | ||||
|             if offset is not None: | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue
	
	 Georg Brandl
						Georg Brandl