reSWIGged

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@43334 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn
2006-11-12 02:47:22 +00:00
parent 19cdf227ad
commit f9bf356bd1
33 changed files with 4057 additions and 2317 deletions

View File

@@ -13658,6 +13658,24 @@ if RELEASE_VERSION != _core_.RELEASE_VERSION:
import warnings
warnings.warn("wxPython/wxWidgets release number mismatch")
def version():
"""Returns a string containing version and port info"""
ctype = wx.USE_UNICODE and 'unicode' or 'ansi'
if wx.Platform == '__WXMSW__':
port = 'msw'
elif wx.Platform == '__WXMAC__':
port = 'mac'
elif wx.Platform == '__WXGTK__':
port = 'gtk'
if 'gtk2' in wx.PlatformInfo:
port = 'gtk2'
else:
port = '?'
return "%s (%s-%s)" % (wx.VERSION_STRING, port, ctype)
#----------------------------------------------------------------------------
# Set wxPython's default string<-->unicode conversion encoding from