mirror of
https://github.com/wxWidgets/Phoenix.git
synced 2026-01-05 11:30:06 +01:00
22 lines
413 B
Python
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()
|