summaryrefslogtreecommitdiffstats
path: root/Lib/json/decoder.py
diff options
context:
space:
mode:
authorChristian Heimes <christian@cheimes.de>2008-05-06 16:18:41 (GMT)
committerChristian Heimes <christian@cheimes.de>2008-05-06 16:18:41 (GMT)
commitc8a0d2f368401adefcf39c672c74e2cfee1c32b0 (patch)
tree1fb89928ace7330e0bb14ea00fcdbe6962f63636 /Lib/json/decoder.py
parent8e4997390ccb92f889ac709c9a45e589472bdee2 (diff)
downloadcpython-c8a0d2f368401adefcf39c672c74e2cfee1c32b0.zip
cpython-c8a0d2f368401adefcf39c672c74e2cfee1c32b0.tar.gz
cpython-c8a0d2f368401adefcf39c672c74e2cfee1c32b0.tar.bz2
Intern static string
Use float constructors instead of magic code for float constants
Diffstat (limited to 'Lib/json/decoder.py')
-rw-r--r--Lib/json/decoder.py12
1 files changed, 1 insertions, 11 deletions
diff --git a/Lib/json/decoder.py b/Lib/json/decoder.py
index acaee25..e80b935 100644
--- a/Lib/json/decoder.py
+++ b/Lib/json/decoder.py
@@ -14,17 +14,7 @@ __all__ = ['JSONDecoder']
FLAGS = re.VERBOSE | re.MULTILINE | re.DOTALL
-
-def _floatconstants():
- import struct
- import sys
- _BYTES = '7FF80000000000007FF0000000000000'.decode('hex')
- if sys.byteorder != 'big':
- _BYTES = _BYTES[:8][::-1] + _BYTES[8:][::-1]
- nan, inf = struct.unpack('dd', _BYTES)
- return nan, inf, -inf
-
-NaN, PosInf, NegInf = _floatconstants()
+NaN, PosInf, NegInf = float('nan'), float('inf'), float('-inf')
def linecol(doc, pos):