forked from M-Labs/artiq
protocols/pyon: minor cleanup
This commit is contained in:
parent
342ab639fc
commit
f860548396
|
@ -13,7 +13,7 @@ objects. Its main features are:
|
|||
The main rationale for this new custom serializer (instead of using JSON) is
|
||||
that JSON does not support Numpy and more generally cannot be extended with
|
||||
other data types while keeping a concise syntax. Here we can use the Python
|
||||
function call syntax to mark special data types.
|
||||
function call syntax to express special data types.
|
||||
"""
|
||||
|
||||
|
||||
|
@ -24,8 +24,10 @@ import os
|
|||
import tempfile
|
||||
|
||||
import numpy
|
||||
|
||||
from ..language.core import int as wrapping_int
|
||||
|
||||
|
||||
_encode_map = {
|
||||
type(None): "none",
|
||||
bool: "bool",
|
||||
|
|
Loading…
Reference in New Issue