Skip to content

Commit 6e02b0d

Browse files
committed
Document find() method
1 parent 4bbe7cb commit 6e02b0d

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

README.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,15 @@ Notes:
1919
* `substring` may be a `cstring` or Python `str` object.
2020
* `start` and `end`, if provided, are _byte_ indexes.
2121

22+
### find(substring [,start [,end]])
23+
24+
See: https://docs.python.org/3/library/stdtypes.html#str.find
25+
26+
Notes:
27+
28+
* `substring` may be a `cstring` or Python `str` object.
29+
* `start` and `end`, if provided, are _byte_ indexes.
30+
2231
## TODO
2332

2433
* Write docs (see `str` type docs)

0 commit comments

Comments
 (0)