forked from M-Labs/artiq
coredevice: Fix host-side serialization of (nested) lists
Test case to follow.
This commit is contained in:
parent
f9af058b96
commit
fc95183e04
|
@ -307,7 +307,7 @@ class CommKernel:
|
||||||
args.append(value)
|
args.append(value)
|
||||||
|
|
||||||
def _skip_rpc_value(self, tags):
|
def _skip_rpc_value(self, tags):
|
||||||
tag = tags.pop(0)
|
tag = chr(tags.pop(0))
|
||||||
if tag == "t":
|
if tag == "t":
|
||||||
length = tags.pop(0)
|
length = tags.pop(0)
|
||||||
for _ in range(length):
|
for _ in range(length):
|
||||||
|
|
Loading…
Reference in New Issue