mirror of
				https://github.com/python/cpython.git
				synced 2025-10-31 13:41:24 +00:00 
			
		
		
		
	gh-125666: Avoid PyREPL exiting when a null byte is in input (#125732)
This commit is contained in:
		
							parent
							
								
									51b012b2a8
								
							
						
					
					
						commit
						44becb8cba
					
				
					 4 changed files with 17 additions and 1 deletions
				
			
		|  | @ -136,7 +136,8 @@ def _showtraceback(self, typ, value, tb, source): | |||
|         # Set the line of text that the exception refers to | ||||
|         lines = source.splitlines() | ||||
|         if (source and typ is SyntaxError | ||||
|                 and not value.text and len(lines) >= value.lineno): | ||||
|                 and not value.text and value.lineno is not None | ||||
|                 and len(lines) >= value.lineno): | ||||
|             value.text = lines[value.lineno - 1] | ||||
|         sys.last_exc = sys.last_value = value | ||||
|         if sys.excepthook is sys.__excepthook__: | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue
	
	 devdanzin
						devdanzin