On Fri, Nov 4, 2022 at 11:18 PM Eric Blake <eblake@redhat.com> wrote
[...]

Sorry but I did not read, but I noticed this:
 
@@ -165,7 +177,7 @@ def example(ex, desc): line("%-34s # %s" % (ex, desc))
         line("The ‘nbd’ module has already been imported.")
         blank()
         example("h = nbd.NBD()", "Create a new handle.")
-    if args.uri is None:
+    if False:  # args.uri is None:

If False will never run, so why not remove the entire branch?

Is this leftover from debugging?
 
Nir