Files
Phoenix/wx/lib/pubsub/examples/basic_kwargs/console_main.py
2016-10-12 22:50:27 -05:00

22 lines
413 B
Python

"""
:copyright: Copyright since 2006 by Oliver Schoenborn, all rights reserved.
:license: BSD, see LICENSE.txt for details.
"""
import console_listeners
import console_senders as senders
from pubsub.py2and3 import print_
def run():
print_('Using "kwargs" messaging protocol of pubsub v3')
senders.doSomething1()
senders.doSomething2()
if __name__ == '__main__':
run()