]> xenbits.xensource.com Git - libvirt.git/commitdiff
python: Don't generate bindings for vir*Ref
authorCole Robinson <crobinso@redhat.com>
Wed, 23 Sep 2009 16:17:03 +0000 (12:17 -0400)
committerCole Robinson <crobinso@redhat.com>
Mon, 5 Oct 2009 17:31:37 +0000 (13:31 -0400)
They are only for use in implementing the bindings, so shouldn't be
exposed to regular API users.

Signed-off-by: Cole Robinson <crobinso@redhat.com>
python/generator.py

index 758914ebcee07b34e3fb760117b985838af09d76..437de0cb38e350839a84ba92d4ef866fc043585a 100755 (executable)
@@ -333,6 +333,16 @@ skip_function = (
     'virStreamSendAll',
     'virStreamRef',
     'virStreamFree',
+
+    # These have no use for bindings users.
+    "virConnectRef",
+    "virDomainRef",
+    "virInterfaceRef",
+    "virNetworkRef",
+    "virNodeDeviceRef",
+    "virSecretRef",
+    "virStoragePoolRef",
+    "virStorageVolRef",
 )