python: make dbus, gi examples, and debug-helper.py python3 ready

https://bugzilla.gnome.org/show_bug.cgi?id=791121
This commit is contained in:
Yifan J
2017-12-02 12:44:50 +08:00
committed by Thomas Haller
parent 5e239d2c04
commit 797d9c4403
25 changed files with 104 additions and 104 deletions

View File

@@ -35,14 +35,14 @@ from gi.repository import GLib, NM
main_loop = None
def do_notify(self, property):
print "notify: %s" % property
print("notify: %s" % property)
ip4cfg = self.get_ip4_config()
if ip4cfg is not None:
print "ip4-config: %s" % ip4cfg.get_path()
print("ip4-config: %s" % ip4cfg.get_path())
main_loop.quit()
def state_changed(obj, arg1, arg2, arg3):
print "State changed: New: %d, Old: %d, Reason: %d" % (arg1, arg2, arg3)
print("State changed: New: %d, Old: %d, Reason: %d" % (arg1, arg2, arg3))
# Device is connected
if arg1 == 100:
obj.connect('notify::ip4-config', do_notify)
@@ -57,8 +57,8 @@ if __name__ == "__main__":
dev = c.get_device_by_iface(dev_iface)
if dev is None:
sys.exit('Device \'%s\' not found' % dev_iface)
print "Device: %s - %s" % (dev_iface, dev.get_device_type().value_name)
print "---------------------------------------"
print("Device: %s - %s" % (dev_iface, dev.get_device_type().value_name))
print("---------------------------------------")
dev.connect('state-changed', state_changed)
main_loop = GLib.MainLoop()