mirror of
				https://github.com/django/django.git
				synced 2025-10-31 09:41:08 +00:00 
			
		
		
		
	Fixed #27642 -- Made forms.utils.flatatt() omit 'None' values from attrs.
This commit is contained in:
		
				
					committed by
					
						 Tim Graham
						Tim Graham
					
				
			
			
				
	
			
			
			
						parent
						
							3e5c5e6754
						
					
				
				
					commit
					4a51ba228b
				
			| @@ -40,7 +40,7 @@ def flatatt(attrs): | ||||
|         if isinstance(value, bool): | ||||
|             if value: | ||||
|                 boolean_attrs.append((attr,)) | ||||
|         else: | ||||
|         elif value is not None: | ||||
|             key_value_attrs.append((attr, value)) | ||||
|  | ||||
|     return ( | ||||
|   | ||||
| @@ -34,6 +34,7 @@ class FormsUtilsTestCase(SimpleTestCase): | ||||
|             flatatt({'class': "news", 'title': "Read this", 'required': False}), | ||||
|             ' class="news" title="Read this"' | ||||
|         ) | ||||
|         self.assertEqual(flatatt({'class': None}), '') | ||||
|         self.assertEqual(flatatt({}), '') | ||||
|  | ||||
|     def test_flatatt_no_side_effects(self): | ||||
|   | ||||
		Reference in New Issue
	
	Block a user