git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@30097
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
wxversion.select('2.5')
import wx
wxversion.select('2.5')
import wx
+More documentation on wxversion and multi-version installs can be
+found at: http://wiki.wxpython.org/index.cgi/MultiVersionInstalls
+
"""
import sys, os, glob, fnmatch
"""
import sys, os, glob, fnmatch
# otherwise, raise an exception
raise VersionError("A previously selected wx version does not match the new request.")
# otherwise, raise an exception
raise VersionError("A previously selected wx version does not match the new request.")
- # If we get here then this is the first time wxversion is used.
- # Ensure that wxPython hasn't been imported yet.
+ # If we get here then this is the first time wxversion is used,
+ # ensure that wxPython hasn't been imported yet.
if sys.modules.has_key('wx') or sys.modules.has_key('wxPython'):
raise VersionError("wxversion.require() must be called before wxPython is imported")
if sys.modules.has_key('wx') or sys.modules.has_key('wxPython'):
raise VersionError("wxversion.require() must be called before wxPython is imported")
def Score(self, other):
score = 0
def Score(self, other):
score = 0
- # whatever version components given in other must match exactly
+ # whatever number of version components given in other must
+ # match exactly
minlen = min(len(self.version), len(other.version))
if self.version[:minlen] != other.version[:minlen]:
return 0
minlen = min(len(self.version), len(other.version))
if self.version[:minlen] != other.version[:minlen]:
return 0
- score += 1 # todo: should it be +=minlen to reward longer matches?
for opt in other.options:
if opt in self.options:
for opt in other.options:
if opt in self.options: