Commit 898d51da authored by Ezio Melotti's avatar Ezio Melotti

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

parent dfa46524
...@@ -27,8 +27,7 @@ for i in range(0x20): ...@@ -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{0:04x}'.format(i))
#ESCAPE_DCT.setdefault(chr(i), '\\u%04x' % (i,)) #ESCAPE_DCT.setdefault(chr(i), '\\u%04x' % (i,))
# Assume this produces an infinity on all machines (probably not guaranteed) INFINITY = float('inf')
INFINITY = float('1e66666')
FLOAT_REPR = repr FLOAT_REPR = repr
def encode_basestring(s): def encode_basestring(s):
......
...@@ -67,6 +67,8 @@ Core and Builtins ...@@ -67,6 +67,8 @@ Core and Builtins
Library 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 - Issue #14426: Correct the Date format in Expires attribute of Set-Cookie
Header in Cookie.py. Header in Cookie.py.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment