mirror of
				https://github.com/python/cpython.git
				synced 2025-10-31 21:51:50 +00:00 
			
		
		
		
	gh-130522: Fix unraisable TypeError in threading at interpreter shutdown (#131537)
Co-authored-by: Peter Bierma <zintensitydev@gmail.com>
This commit is contained in:
		
							parent
							
								
									7ce2f101c4
								
							
						
					
					
						commit
						cb93b6fc5e
					
				
					 3 changed files with 20 additions and 1 deletions
				
			
		|  | @ -2042,6 +2042,23 @@ def modify_file(): | |||
|             t.start() | ||||
|             t.join() | ||||
| 
 | ||||
|     def test_dummy_thread_on_interpreter_shutdown(self): | ||||
|         # GH-130522: When `threading` held a reference to itself and then a | ||||
|         # _DummyThread() object was created, destruction of the dummy thread | ||||
|         # would emit an unraisable exception at shutdown, due to a lock being | ||||
|         # destroyed. | ||||
|         code = """if True: | ||||
|         import sys | ||||
|         import threading | ||||
| 
 | ||||
|         threading.x = sys.modules[__name__] | ||||
|         x = threading._DummyThread() | ||||
|         """ | ||||
|         rc, out, err = assert_python_ok("-c", code) | ||||
|         self.assertEqual(rc, 0) | ||||
|         self.assertEqual(out, b"") | ||||
|         self.assertEqual(err, b"") | ||||
| 
 | ||||
| 
 | ||||
| class ThreadRunFail(threading.Thread): | ||||
|     def run(self): | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue
	
	 Tyler Kennedy
						Tyler Kennedy