Added blockdev_* calls. RInt64 type. Enhanced tests.
[libguestfs.git] / python / guestfs.py
index d4cd46d..95156fc 100644 (file)
@@ -210,3 +210,21 @@ class GuestFS:
     def file (self, path):
         return libguestfsmod.file (self._o, path)
 
+    def command (self, arguments):
+        return libguestfsmod.command (self._o, arguments)
+
+    def command_lines (self, arguments):
+        return libguestfsmod.command_lines (self._o, arguments)
+
+    def stat (self, path):
+        return libguestfsmod.stat (self._o, path)
+
+    def lstat (self, path):
+        return libguestfsmod.lstat (self._o, path)
+
+    def statvfs (self, path):
+        return libguestfsmod.statvfs (self._o, path)
+
+    def tune2fs_l (self, device):
+        return libguestfsmod.tune2fs_l (self._o, device)
+