diff options
author | gabrieldemarmiesse <gabriel.demarmiesse@teraki.com> | 2018-06-20 18:34:37 +0200 |
---|---|---|
committer | gabrieldemarmiesse <gabriel.demarmiesse@teraki.com> | 2018-06-20 18:34:37 +0200 |
commit | 50cdd8698aa26f4f5c6e792d3d6cd039b3cbb8a7 (patch) | |
tree | 74ac63258c8317d1da41da663333a718b73ed3b5 /docs/examples/tutorial/string | |
parent | 21771276737c32fc075ba2ce0f244cf9a260b9b3 (diff) | |
download | cython-50cdd8698aa26f4f5c6e792d3d6cd039b3cbb8a7.tar.gz |
Removed outdated part of the string.rst.
Diffstat (limited to 'docs/examples/tutorial/string')
-rw-r--r-- | docs/examples/tutorial/string/const_char.pyx | 6 | ||||
-rw-r--r-- | docs/examples/tutorial/string/const_left_out.pyx | 2 |
2 files changed, 0 insertions, 8 deletions
diff --git a/docs/examples/tutorial/string/const_char.pyx b/docs/examples/tutorial/string/const_char.pyx deleted file mode 100644 index 03db62f78..000000000 --- a/docs/examples/tutorial/string/const_char.pyx +++ /dev/null @@ -1,6 +0,0 @@ -from libc.string cimport const_char, const_uchar
-
-cdef extern from "someheader.h":
- ctypedef const_char specialChar
- int process_string(const_char* s)
- const_uchar* look_up_cached_string(const_uchar* key)
diff --git a/docs/examples/tutorial/string/const_left_out.pyx b/docs/examples/tutorial/string/const_left_out.pyx deleted file mode 100644 index 13928cfed..000000000 --- a/docs/examples/tutorial/string/const_left_out.pyx +++ /dev/null @@ -1,2 +0,0 @@ -cdef extern from "someheader.h":
- int process_string(char* s) # note: looses API information!
|