mirror of
				https://github.com/python/cpython.git
				synced 2025-11-03 23:21:29 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
	
		
			499 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
	
		
			499 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, 3.1]:
 | 
						|
            self.assertEquals(float(json.dumps(num)), num)
 | 
						|
            self.assertEquals(json.loads(json.dumps(num)), num)
 | 
						|
 | 
						|
    def test_ints(self):
 | 
						|
        for num in [1, 1L, 1<<32, 1<<64]:
 | 
						|
            self.assertEquals(json.dumps(num), str(num))
 | 
						|
            self.assertEquals(int(json.dumps(num)), num)
 |