mirror of https://github.com/m-labs/artiq.git
pyon: add bool support
This commit is contained in:
parent
6ac3c5d8ae
commit
489bcb3447
|
@ -7,6 +7,13 @@ def _encode_none(x):
|
|||
return "None"
|
||||
|
||||
|
||||
def _encode_bool(x):
|
||||
if x:
|
||||
return "True"
|
||||
else:
|
||||
return "False"
|
||||
|
||||
|
||||
def _encode_number(x):
|
||||
return str(x)
|
||||
|
||||
|
@ -50,6 +57,7 @@ def _encode_nparray(x):
|
|||
|
||||
_encode_map = {
|
||||
type(None): _encode_none,
|
||||
bool: _encode_bool,
|
||||
int: _encode_number,
|
||||
float: _encode_number,
|
||||
str: _encode_str,
|
||||
|
|
Loading…
Reference in New Issue