Commit c1896d41 authored by Joanne Hugé's avatar Joanne Hugé

.

parent e9158f6c
......@@ -37,8 +37,21 @@ def main():
xpprint(ele)
"""
"""
x = m.get()
xpprint(x.data)
"""
ok = m.create_subscription()
print(ok)
while 1:
x = m.take_notification(timeout=5)
if x is None:
print('.', end='', flush=True)
continue
print(x)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment