diff options
author | Sandro Tosi <sandro.tosi@gmail.com> | 2011-08-12 22:39:46 (GMT) |
---|---|---|
committer | Sandro Tosi <sandro.tosi@gmail.com> | 2011-08-12 22:39:46 (GMT) |
commit | 7bf4363f77b9aba82126d092f70aa27f3610bf69 (patch) | |
tree | 1e93fb4a27701fa27cc43368b7fae9795fef98ee | |
parent | c2d2c720d48feaa866ff19a100102af2b33d012f (diff) | |
download | cpython-7bf4363f77b9aba82126d092f70aa27f3610bf69.zip cpython-7bf4363f77b9aba82126d092f70aa27f3610bf69.tar.gz cpython-7bf4363f77b9aba82126d092f70aa27f3610bf69.tar.bz2 |
let PySequence_Check me a link; thanks to tomo cocoa from docs@
-rw-r--r-- | Doc/c-api/sequence.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/c-api/sequence.rst b/Doc/c-api/sequence.rst index 599074c..0297ba3 100644 --- a/Doc/c-api/sequence.rst +++ b/Doc/c-api/sequence.rst @@ -149,7 +149,7 @@ Sequence Protocol Return the *i*\ th element of *o* or *NULL* on failure. Macro form of :c:func:`PySequence_GetItem` but without checking that - :c:func:`PySequence_Check(o)` is true and without adjustment for negative + :c:func:`PySequence_Check` on *o* is true and without adjustment for negative indices. |