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
Boxiang Sun
cython
Commits
72ef3640
Commit
72ef3640
authored
Apr 10, 2012
by
Stefan Behnel
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avoid unnecessarily unsafe code in test: don't take char* from global Python variable
parent
60b38b73
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
16 additions
and
14 deletions
+16
-14
tests/run/unsigned_char_ptr_bytes_conversion_T359.pyx
tests/run/unsigned_char_ptr_bytes_conversion_T359.pyx
+16
-14
No files found.
tests/run/unsigned_char_ptr_bytes_conversion_T359.pyx
View file @
72ef3640
# ticket: 359
# ticket: 359
__doc__
=
"""
>>> print(py_string1.decode('iso8859-1'))
test toast taste
>>> print(py_string2.decode('iso8859-1'))
test toast taste
>>> print(py_string3.decode('iso8859-1'))
test toast taste
"""
cdef
unsigned
char
*
some_c_unstring
=
'test toast taste'
cdef
unsigned
char
*
some_c_unstring
=
'test toast taste'
py_string1
=
some_c_unstring
def
test_uchar_conversion
():
"""
>>> py_string1, py_string2, py_string3 = test_uchar_conversion()
>>> print(py_string1.decode('iso8859-1'))
test toast taste
>>> print(py_string2.decode('iso8859-1'))
test toast taste
>>> print(py_string3.decode('iso8859-1'))
test toast taste
"""
cdef
unsigned
char
*
c_unstring_from_py
=
py_string1
cdef
object
py_string1
=
some_c_unstring
py_string2
=
c_unstring_from_py
cdef
unsigned
char
*
c_unstring_from_py
=
py_string1
cdef
object
py_string2
=
c_unstring_from_py
cdef
char
*
c_string_from_py
=
py_string2
cdef
char
*
c_string_from_py
=
py_string2
cdef
object
py_string3
=
c_string_from_py
py_string3
=
c_string_from_py
return
py_string1
,
py_string2
,
py_string3
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