chiark / gitweb /
sel-timer: Pyrex now wants explicit truncations to integer.
[mLib-python] / str.pyx
diff --git a/str.pyx b/str.pyx
index b7d80e682f7c75505a10fe93fd479dd8c13023f4..a87f12cdbf883f4639cf9d3967f96619fce78e0c 100644 (file)
--- a/str.pyx
+++ b/str.pyx
 # it under the terms of the GNU General Public License as published by
 # the Free Software Foundation; either version 2 of the License, or
 # (at your option) any later version.
-# 
+#
 # mLib/Python is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 # GNU General Public License for more details.
-# 
+#
 # You should have received a copy of the GNU General Public License
 # along with mLib/Python; if not, write to the Free Software Foundation,
 # Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
@@ -93,6 +93,8 @@ def sanitize(char *p, int n = -1):
   d = buf
   xfree(buf)
   return d
-  
+
+def versioncmp(char *va, char *vb):
+  return _versioncmp(va, vb)
 
 #----- That's all, folks ----------------------------------------------------