Commit e300c8d6 authored by Stefan Behnel's avatar Stefan Behnel

fix doc typo

parent 4de7a5c5
...@@ -435,7 +435,7 @@ arguments) or by an explicit cast, e.g.:: ...@@ -435,7 +435,7 @@ arguments) or by an explicit cast, e.g.::
print(vect) # [1, 3, 5, 7, 9] print(vect) # [1, 3, 5, 7, 9]
cdef vector[string] cpp_strings = b'ab cd ef gh'.split() cdef vector[string] cpp_strings = b'ab cd ef gh'.split()
print(cpp_strings.get(1)) # b'cd' print(cpp_strings[1]) # b'cd'
The following coercions are available: The following coercions are available:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment