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
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Gwenaël Samain
cython
Commits
d319ed83
Commit
d319ed83
authored
9 years ago
by
Stefan Behnel
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
modernise test
parent
bf43cd24
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
37 additions
and
22 deletions
+37
-22
tests/run/charptr_len.pyx
tests/run/charptr_len.pyx
+37
-22
No files found.
tests/run/charptr_len.pyx
View file @
d319ed83
__doc__
=
"""
>>> lentest_char()
7
>>> lentest_char_c()
7
>>> lentest_char_c_short()
7
>>> lentest_char_c_float()
7.0
>>> lentest_uchar()
7
>>> lentest_uchar_c()
7
>>> lentest_py()
7
>>> lentest_py_c()
7
"""
cimport
cython
cdef
char
*
s
=
b"abcdefg"
...
...
@@ -31,26 +9,45 @@ cdef bytes pystr = b"abcdefg"
"//PythonCapiCallNode"
,
)
def
lentest_char
():
"""
>>> lentest_char()
7
"""
return
len
(
s
)
@
cython
.
test_assert_path_exists
(
"//PythonCapiCallNode"
,
)
def
lentest_char_c
():
"""
>>> lentest_char_c()
7
"""
cdef
Py_ssize_t
l
=
len
(
s
)
return
l
@
cython
.
test_assert_path_exists
(
"//PythonCapiCallNode"
,
)
def
lentest_char_c_short
():
"""
>>> lentest_char_c_short()
7
"""
cdef
short
l
=
len
(
s
)
return
l
@
cython
.
test_assert_path_exists
(
"//PythonCapiCallNode"
,
)
def
lentest_char_c_float
():
"""
>>> lentest_char_c_float()
7.0
"""
cdef
float
l
=
len
(
s
)
return
l
...
...
@@ -59,19 +56,37 @@ def lentest_char_c_float():
"//PythonCapiCallNode"
,
)
def
lentest_uchar
():
"""
>>> lentest_uchar()
7
"""
return
len
(
us
)
@
cython
.
test_assert_path_exists
(
"//PythonCapiCallNode"
,
)
def
lentest_uchar_c
():
"""
>>> lentest_uchar_c()
7
"""
cdef
Py_ssize_t
l
=
len
(
us
)
return
l
def
lentest_py
():
"""
>>> lentest_py()
7
"""
return
len
(
pystr
)
def
lentest_py_c
():
"""
>>> lentest_py_c()
7
"""
cdef
Py_ssize_t
l
=
len
(
pystr
)
return
l
This diff is collapsed.
Click to expand it.
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