mirror of
				https://github.com/python/cpython.git
				synced 2025-11-04 11:49:12 +00:00 
			
		
		
		
	Fixes test_getargs2 to get the buildbots working again.
This commit is contained in:
		
							parent
							
								
									16c18a354b
								
							
						
					
					
						commit
						a3222b8424
					
				
					 1 changed files with 1 additions and 1 deletions
				
			
		| 
						 | 
					@ -471,7 +471,7 @@ class Tuple_TestCase(unittest.TestCase):
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        ret = get_args(*TupleSubclass([1, 2]))
 | 
					        ret = get_args(*TupleSubclass([1, 2]))
 | 
				
			||||||
        self.assertEqual(ret, (1, 2))
 | 
					        self.assertEqual(ret, (1, 2))
 | 
				
			||||||
        self.assertIs(type(ret), tuple)
 | 
					        self.assertIsInstance(ret, tuple)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        ret = get_args()
 | 
					        ret = get_args()
 | 
				
			||||||
        self.assertIn(ret, ((), None))
 | 
					        self.assertIn(ret, ((), None))
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue