chiark
/
gitweb
/
~mdw
/
mLib-python
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Release 1.1.0.
[mLib-python]
/
str.pyx
diff --git
a/str.pyx
b/str.pyx
index 676b0eecb20f2da1d53a72d891e3ba1fd2b39628..f1a2ee5b5659080c29f3587d9501203f8002996c 100644
(file)
--- a/
str.pyx
+++ b/
str.pyx
@@
-24,6
+24,7
@@
### Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
def word(char *p, quotep = False):
### Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
def word(char *p, quotep = False):
+ """word(STR, [quotep = False]) -> WORD, REST"""
cdef unsigned f
cdef char *op
cdef char *pp
cdef unsigned f
cdef char *op
cdef char *pp
@@
-48,6
+49,7
@@
def word(char *p, quotep = False):
return w, r
def split(char *p, int n = -1, quotep = False):
return w, r
def split(char *p, int n = -1, quotep = False):
+ """split(STR, [n = -1], [quotep = False]) -> WORDS, REST"""
cdef unsigned f
cdef char *op
cdef char *pp
cdef unsigned f
cdef char *op
cdef char *pp
@@
-75,6
+77,7
@@
def split(char *p, int n = -1, quotep = False):
return l, r
def match(char *p, char *s, prefixp = False):
return l, r
def match(char *p, char *s, prefixp = False):
+ """match(PAT, STR, [prefixp = False]) -> BOOL"""
cdef unsigned f
f = 0
cdef unsigned f
f = 0
@@
-83,6
+86,7
@@
def match(char *p, char *s, prefixp = False):
return _tobool(str_matchx(p, s, f))
def sanitize(char *p, int n = -1):
return _tobool(str_matchx(p, s, f))
def sanitize(char *p, int n = -1):
+ """sanitize(STR, [n = -1]) -> STR"""
cdef char *buf
cdef object d
cdef char *buf
cdef object d
@@
-95,6
+99,7
@@
def sanitize(char *p, int n = -1):
return d
def versioncmp(char *va, char *vb):
return d
def versioncmp(char *va, char *vb):
+ """versioncmp(V0, V1) -> -1 | 0 | +1"""
return _versioncmp(va, vb)
###----- That's all, folks --------------------------------------------------
return _versioncmp(va, vb)
###----- That's all, folks --------------------------------------------------