mirror of
				https://github.com/python/cpython.git
				synced 2025-10-31 21:51:50 +00:00 
			
		
		
		
	gh-121474: Add threading.Barrier parties arg sanity check. (GH-121480)
This commit is contained in:
		
							parent
							
								
									3a9b2aae61
								
							
						
					
					
						commit
						d27a53fc02
					
				
					 3 changed files with 8 additions and 0 deletions
				
			
		|  | @ -1013,6 +1013,10 @@ def multipass(self, results, n): | ||||||
|         self.assertEqual(self.barrier.n_waiting, 0) |         self.assertEqual(self.barrier.n_waiting, 0) | ||||||
|         self.assertFalse(self.barrier.broken) |         self.assertFalse(self.barrier.broken) | ||||||
| 
 | 
 | ||||||
|  |     def test_constructor(self): | ||||||
|  |         self.assertRaises(ValueError, self.barriertype, parties=0) | ||||||
|  |         self.assertRaises(ValueError, self.barriertype, parties=-1) | ||||||
|  | 
 | ||||||
|     def test_barrier(self, passes=1): |     def test_barrier(self, passes=1): | ||||||
|         """ |         """ | ||||||
|         Test that a barrier is passed in lockstep |         Test that a barrier is passed in lockstep | ||||||
|  |  | ||||||
|  | @ -689,6 +689,8 @@ def __init__(self, parties, action=None, timeout=None): | ||||||
|         default for all subsequent 'wait()' calls. |         default for all subsequent 'wait()' calls. | ||||||
| 
 | 
 | ||||||
|         """ |         """ | ||||||
|  |         if parties < 1: | ||||||
|  |             raise ValueError("parties must be > 0") | ||||||
|         self._cond = Condition(Lock()) |         self._cond = Condition(Lock()) | ||||||
|         self._action = action |         self._action = action | ||||||
|         self._timeout = timeout |         self._timeout = timeout | ||||||
|  |  | ||||||
|  | @ -0,0 +1,2 @@ | ||||||
|  | Fix missing sanity check for ``parties`` arg in :class:`threading.Barrier` | ||||||
|  | constructor. Patch by Clinton Christian (pygeek). | ||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue
	
	 Clinton
						Clinton