X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~mdw/git/mLib-python/blobdiff_plain/ae68e889be24648e94d936e1aea614d2d1a0e7a8..4091abf10ce3940b80c3e8b2a5e59b02e6cadb9f:/str.pyx diff --git a/str.pyx b/str.pyx index bbde1b0..a48b5f2 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. @@ -78,6 +78,8 @@ def split(char *p, int n = -1, quotep = False): def match(char *p, char *s, prefixp = False): cdef unsigned f + + f = 0 if prefixp: f = f | STRF_PREFIX return _tobool(str_matchx(p, s, f))