diff options
author | Benjamin Peterson <benjamin@python.org> | 2014-04-08 14:51:20 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2014-04-08 14:51:20 (GMT) |
commit | 7ddf3eba90576f51c14b8da0df2970589761b78e (patch) | |
tree | 2d4ac2f0389373645fba644b00ba92fd62242b65 /Include | |
parent | ce0700ae7a192a142559db7653b0a59004ec6071 (diff) | |
download | cpython-7ddf3eba90576f51c14b8da0df2970589761b78e.zip cpython-7ddf3eba90576f51c14b8da0df2970589761b78e.tar.gz cpython-7ddf3eba90576f51c14b8da0df2970589761b78e.tar.bz2 |
use imperative
Diffstat (limited to 'Include')
-rw-r--r-- | Include/abstract.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Include/abstract.h b/Include/abstract.h index 4bc9952a..6e850b8 100644 --- a/Include/abstract.h +++ b/Include/abstract.h @@ -1021,7 +1021,7 @@ xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/ PyAPI_FUNC(PyObject *) PySequence_Fast(PyObject *o, const char* m); /* - Returns the sequence, o, as a list, unless it's already a + Return the sequence, o, as a list, unless it's already a tuple or list. Use PySequence_Fast_GET_ITEM to access the members of this list, and PySequence_Fast_GET_SIZE to get its length. |