Displaying 2 results from an estimated 2 matches for "78c64f2".
Did you mean:
181c64f2
2019 Jul 16
0
[PATCH libnbd v2] generator: Define new Closure type instead of callbacks.
...d.CMD_FLAG_DF)
+ buf = h.pread_structured (512, 0, lambda *args: f (43, *args),
+ nbd.CMD_FLAG_DF)
assert False
except nbd.Error as ex:
assert ex.errnum == errno.EPROTO
diff --git a/python/t/460-block-status.py b/python/t/460-block-status.py
index 7e4ba2c..78c64f2 100644
--- a/python/t/460-block-status.py
+++ b/python/t/460-block-status.py
@@ -27,26 +27,27 @@ h.connect_command (["nbdkit", "-s", "--exit-with-parent", "-v",
"sh", script])
entries = []
-def f (data, metacontext, offset, e...
2019 Jul 16
2
[PATCH libnbd v2] generator: Define new Closure type
As before, but this one has working Python bindings. OCaml still TBD.
Rich.