mirror of
https://github.com/wxWidgets/Phoenix.git
synced 2026-01-05 11:30:06 +01:00
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxPython/Phoenix/trunk@75492 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
24 lines
443 B
Python
24 lines
443 B
Python
"""
|
|
|
|
:copyright: Copyright since 2006 by Oliver Schoenborn, all rights reserved.
|
|
:license: BSD, see LICENSE.txt for details.
|
|
|
|
"""
|
|
|
|
from pubsub import setuparg1
|
|
from pubsub.py2and3 import print_
|
|
|
|
import console_senders as senders
|
|
import console_listeners
|
|
|
|
|
|
def run():
|
|
print_('Using "arg1" messaging protocol of pubsub v3')
|
|
|
|
senders.doSomething1()
|
|
senders.doSomething2()
|
|
|
|
|
|
if __name__ == '__main__':
|
|
run()
|