#14875: Use float('inf') instead of float('1e66666') in the json module.

This commit is contained in:
Ezio Melotti 2012-05-21 17:49:06 -06:00
parent dfa465243c
commit 898d51da4d
2 changed files with 3 additions and 2 deletions

View File

@ -27,8 +27,7 @@ for i in range(0x20):
ESCAPE_DCT.setdefault(chr(i), '\\u{0:04x}'.format(i))
#ESCAPE_DCT.setdefault(chr(i), '\\u%04x' % (i,))
# Assume this produces an infinity on all machines (probably not guaranteed)
INFINITY = float('1e66666')
INFINITY = float('inf')
FLOAT_REPR = repr
def encode_basestring(s):

View File

@ -67,6 +67,8 @@ Core and Builtins
Library
-------
- Issue #14875: Use float('inf') instead of float('1e66666') in the json module.
- Issue #14426: Correct the Date format in Expires attribute of Set-Cookie
Header in Cookie.py.