diff options
author | scoder <stefan_ml@behnel.de> | 2018-06-20 07:04:12 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-06-20 07:04:12 +0200 |
commit | 226f53c8b881c20aaf0977ce51a1b3279ed75139 (patch) | |
tree | 4a4739bef56a6caa25f81e991196a6f022f7aacc /docs/examples/tutorial/string | |
parent | c9f7bce24cd5ea92d0c898a8978afde8fa412a77 (diff) | |
parent | c36e1d358554c6802939a2012ebe152b207eac1a (diff) | |
download | cython-226f53c8b881c20aaf0977ce51a1b3279ed75139.tar.gz |
Merge pull request #2380 from gabrieldemarmiesse/test_string_6
Adding tests for "Unicode and passing strings" part 6
Diffstat (limited to 'docs/examples/tutorial/string')
-rw-r--r-- | docs/examples/tutorial/string/to_char.pyx | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/docs/examples/tutorial/string/to_char.pyx b/docs/examples/tutorial/string/to_char.pyx new file mode 100644 index 000000000..5e4a16161 --- /dev/null +++ b/docs/examples/tutorial/string/to_char.pyx @@ -0,0 +1,8 @@ +# define a global name for whatever char type is used in the module
+ctypedef unsigned char char_type
+
+cdef char_type[:] _chars(s):
+ if isinstance(s, unicode):
+ # encode to the specific encoding used inside of the module
+ s = (<unicode>s).encode('utf8')
+ return s
|