mirror of
				https://github.com/django/django.git
				synced 2025-10-31 09:41:08 +00:00 
			
		
		
		
	Fixed #11993: fixed the the floatformat filter on NaN values in Python 2.6.3. Thanks, kklimonda.
				
					
				
			git-svn-id: http://code.djangoproject.com/svn/django/trunk@11619 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
		| @@ -162,7 +162,7 @@ def floatformat(text, arg=-1): | ||||
|  | ||||
|     try: | ||||
|         m = int(d) - d | ||||
|     except (OverflowError, InvalidOperation): | ||||
|     except (ValueError, OverflowError, InvalidOperation): | ||||
|         return input_val | ||||
|  | ||||
|     if not m and p < 0: | ||||
|   | ||||
		Reference in New Issue
	
	Block a user