mirror of
https://github.com/python/cpython.git
synced 2025-07-30 14:44:10 +00:00
9 lines
248 B
Python
9 lines
248 B
Python
import math
|
|
from unittest import TestCase
|
|
|
|
import json
|
|
|
|
class TestFloat(TestCase):
|
|
def test_floats(self):
|
|
for num in [1617161771.7650001, math.pi, math.pi**100, math.pi**-100]:
|
|
self.assertEquals(float(json.dumps(num)), num)
|