mirror of
https://github.com/wxWidgets/Phoenix.git
synced 2025-09-05 01:10:12 +02:00
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxPython/Phoenix/trunk@72061 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
19 lines
490 B
Python
19 lines
490 B
Python
'''
|
|
Import this file before the first 'from pubsub import pub' statement
|
|
to make pubsub use the legacy v1 API.
|
|
This would typically be useful only for wxPython applications that use
|
|
a version of wxPython where legacy v1 API is *not* the default:
|
|
|
|
from wx.lib.pubsub import setupv1
|
|
from wx.lib.pubsub import pub
|
|
|
|
:copyright: Copyright 2006-2009 by Oliver Schoenborn, all rights reserved.
|
|
:license: BSD, see LICENSE.txt for details.
|
|
|
|
'''
|
|
|
|
import pubsubconf
|
|
pubsubconf.setVersion(1)
|
|
|
|
|