Home | History | Annotate | Download | only in test
      1 #!/usr/bin/python
      2 
      3 import dbus
      4 
      5 bus = dbus.SystemBus()
      6 
      7 object = dbus.Interface(bus.get_object("org.chromium.dhcpcd", '/'),
      8 				"org.freedesktop.DBus.Introspectable")
      9 print object.Introspect()
     10