diff options
author | Sandro Tosi <sandro.tosi@gmail.com> | 2011-08-12 22:40:08 (GMT) |
---|---|---|
committer | Sandro Tosi <sandro.tosi@gmail.com> | 2011-08-12 22:40:08 (GMT) |
commit | 98d95a50c90bdc4a64fb7db9da74d46a3bf129ba (patch) | |
tree | a837f77222fab9c703395121762869e55584f3c4 /Doc/c-api | |
parent | 147cd508bcfa3eb802c4745adb3a86225cba73f3 (diff) | |
parent | 7bf4363f77b9aba82126d092f70aa27f3610bf69 (diff) | |
download | cpython-98d95a50c90bdc4a64fb7db9da74d46a3bf129ba.zip cpython-98d95a50c90bdc4a64fb7db9da74d46a3bf129ba.tar.gz cpython-98d95a50c90bdc4a64fb7db9da74d46a3bf129ba.tar.bz2 |
merge with 3.2
Diffstat (limited to 'Doc/c-api')
-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. |