]> git.saurik.com Git - wxWidgets.git/commitdiff
Doc and comment updates
authorRobin Dunn <robin@alldunn.com>
Mon, 25 Oct 2004 22:53:36 +0000 (22:53 +0000)
committerRobin Dunn <robin@alldunn.com>
Mon, 25 Oct 2004 22:53:36 +0000 (22:53 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@30097 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

wxPython/wxversion/wxversion.py

index ca7f2c505521f707c6d56193c6294557273d50bf..26c15e62c2fbcd3e0dc485104965a847a66971d7 100644 (file)
@@ -53,6 +53,9 @@ that and only use wxversion if needed.  For example, for py2exe::
         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
@@ -103,8 +106,8 @@ def select(versions):
         # 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")
 
@@ -220,11 +223,12 @@ class _wxPackageInfo(object):
     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?
+        score += 1
         
         for opt in other.options:
             if opt in self.options:
         
         for opt in other.options:
             if opt in self.options: