From b7abf2fb53305e70281a5b0634d2dae0377dce5b Mon Sep 17 00:00:00 2001 From: Charles Baynham Date: Wed, 11 Sep 2019 15:50:21 +0100 Subject: [PATCH] pyon: Handle inf in decoding --- artiq/protocols/pyon.py | 1 + 1 file changed, 1 insertion(+) diff --git a/artiq/protocols/pyon.py b/artiq/protocols/pyon.py index 3ddef16a9..2ad6755fd 100644 --- a/artiq/protocols/pyon.py +++ b/artiq/protocols/pyon.py @@ -193,6 +193,7 @@ _eval_dict = { "null": None, "false": False, "true": True, + "inf": numpy.inf, "slice": slice, "nan": numpy.nan,