summaryrefslogtreecommitdiffstats
path: root/python/guestfs.py
diff options
context:
space:
mode:
Diffstat (limited to 'python/guestfs.py')
-rw-r--r--python/guestfs.py9
1 files changed, 9 insertions, 0 deletions
diff --git a/python/guestfs.py b/python/guestfs.py
index 6cf7e19e..2e0be5c5 100644
--- a/python/guestfs.py
+++ b/python/guestfs.py
@@ -216,3 +216,12 @@ class GuestFS:
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)
+