Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Labels
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Commits
Open sidebar
nexedi
cython
Commits
a337a45f
Commit
a337a45f
authored
Mar 21, 2010
by
Stefan Behnel
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
extended test case to make sure the unicode method optimisations get applied
parent
57dddae0
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
24 additions
and
1 deletion
+24
-1
tests/run/unicodemethods.pyx
tests/run/unicodemethods.pyx
+24
-1
No files found.
tests/run/unicodemethods.pyx
View file @
a337a45f
...
...
@@ -17,6 +17,8 @@ def print_all(l):
# unicode.split(s, [sep, [maxsplit]])
@
cython
.
test_assert_path_exists
(
"//PythonCapiCallNode"
)
def
split
(
unicode
s
):
"""
>>> print_all( text.split() )
...
...
@@ -40,6 +42,8 @@ def split(unicode s):
"""
return
s
.
split
()
@
cython
.
test_assert_path_exists
(
"//PythonCapiCallNode"
)
def
split_sep
(
unicode
s
,
sep
):
"""
>>> print_all( text.split(sep) )
...
...
@@ -57,7 +61,8 @@ def split_sep(unicode s, sep):
"//CoerceToPyTypeNode"
,
"//CastNode"
,
"//TypecastNode"
)
@
cython
.
test_assert_path_exists
(
"//CoerceFromPyTypeNode"
)
"//CoerceFromPyTypeNode"
,
"//PythonCapiCallNode"
)
def
split_sep_max
(
unicode
s
,
sep
,
max
):
"""
>>> print_all( text.split(sep, 1) )
...
...
@@ -72,6 +77,8 @@ def split_sep_max(unicode s, sep, max):
@
cython
.
test_fail_if_path_exists
(
"//CoerceToPyTypeNode"
,
"//CoerceFromPyTypeNode"
,
"//CastNode"
,
"//TypecastNode"
)
@
cython
.
test_assert_path_exists
(
"//PythonCapiCallNode"
)
def
split_sep_max_int
(
unicode
s
,
sep
):
"""
>>> print_all( text.split(sep, 1) )
...
...
@@ -86,6 +93,8 @@ def split_sep_max_int(unicode s, sep):
# unicode.splitlines(s, [keepends])
@
cython
.
test_assert_path_exists
(
"//PythonCapiCallNode"
)
def
splitlines
(
unicode
s
):
"""
>>> len(multiline_text.splitlines())
...
...
@@ -103,6 +112,8 @@ def splitlines(unicode s):
"""
return
s
.
splitlines
()
@
cython
.
test_assert_path_exists
(
"//PythonCapiCallNode"
)
def
splitlines_keep
(
unicode
s
,
keep
):
"""
>>> len(multiline_text.splitlines(True))
...
...
@@ -128,6 +139,8 @@ def splitlines_keep(unicode s, keep):
# boolean conversion isn't currently smart enough for this ...
# "//CoerceToPyTypeNode", "//CoerceFromPyTypeNode",
"//CastNode"
,
"//TypecastNode"
)
@
cython
.
test_assert_path_exists
(
"//PythonCapiCallNode"
)
def
splitlines_keep_bint
(
unicode
s
):
"""
>>> len(multiline_text.splitlines(True))
...
...
@@ -162,6 +175,11 @@ def splitlines_keep_bint(unicode s):
pipe_sep
=
u'|'
@
cython
.
test_fail_if_path_exists
(
"//CoerceToPyTypeNode"
,
"//CoerceFromPyTypeNode"
,
"//CastNode"
,
"//TypecastNode"
)
@
cython
.
test_assert_path_exists
(
"//PythonCapiCallNode"
)
def
join
(
unicode
sep
,
l
):
"""
>>> l = text.split()
...
...
@@ -174,6 +192,11 @@ def join(unicode sep, l):
"""
return
sep
.
join
(
l
)
@
cython
.
test_fail_if_path_exists
(
"//CoerceToPyTypeNode"
,
"//CoerceFromPyTypeNode"
,
"//CastNode"
,
"//TypecastNode"
,
"//NoneCheckNode"
)
@
cython
.
test_assert_path_exists
(
"//PythonCapiCallNode"
)
def
join_sep
(
l
):
"""
>>> l = text.split()
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment