protocols/pyon: minor cleanup

This commit is contained in:
Sebastien Bourdeauducq 2016-04-04 21:34:37 +08:00
parent c97cb1d3b9
commit a27aa9680e
1 changed files with 3 additions and 1 deletions

View File

@ -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",