diff options
Diffstat (limited to 'docs/examples/tutorial/string/to_char.pyx')
-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
|