X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~mdw/git/mLib-python/blobdiff_plain/6a6bd8fac21d06b426006a5e92f6e2696590a435..c34ff3c579610589a43ea775d0dbf0e15fa6b35f:/str.pyx diff --git a/str.pyx b/str.pyx index 7ec1ed4..a87f12c 100644 --- a/str.pyx +++ b/str.pyx @@ -15,12 +15,12 @@ # 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. @@ -76,8 +76,11 @@ def split(char *p, int n = -1, quotep = False): xfree(op) return l, r -def match(char *p, char *s): - return _tobool(str_match(p, s)) +def match(char *p, char *s, prefixp = False): + cdef unsigned f + if prefixp: + f = f | STRF_PREFIX + return _tobool(str_matchx(p, s, f)) def sanitize(char *p, int n = -1): cdef char *buf @@ -90,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 ----------------------------------------------------