1
0
mirror of https://github.com/django/django.git synced 2025-10-24 06:06:09 +00:00

Refs #34000 -- Optimized handling None values in numberformat.format().

This commit is contained in:
Jimmy Angelakos
2022-09-12 12:59:14 +02:00
committed by Mariusz Felisiak
parent e911e0996f
commit 07ebef566f
2 changed files with 2 additions and 1 deletions

View File

@@ -175,3 +175,4 @@ class TestNumberFormat(SimpleTestCase):
def test_empty(self):
self.assertEqual(nformat("", "."), "")
self.assertEqual(nformat(None, "."), "None")