diff options
author | Georg Brandl <georg@python.org> | 2007-12-02 23:11:00 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2007-12-02 23:11:00 (GMT) |
commit | aacc08990bd67268f75735251403510676399fea (patch) | |
tree | 7a66963c83dca663fff8a77f350635538d9030b9 /Doc/c-api/abstract.rst | |
parent | 9914dd33c0082899fef4ef862d4e4860d03dc63f (diff) | |
download | cpython-aacc08990bd67268f75735251403510676399fea.zip cpython-aacc08990bd67268f75735251403510676399fea.tar.gz cpython-aacc08990bd67268f75735251403510676399fea.tar.bz2 |
Remove mentions of "long integer" in the API docs.
Diffstat (limited to 'Doc/c-api/abstract.rst')
-rw-r--r-- | Doc/c-api/abstract.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/c-api/abstract.rst b/Doc/c-api/abstract.rst index 6953775..c616561 100644 --- a/Doc/c-api/abstract.rst +++ b/Doc/c-api/abstract.rst @@ -583,7 +583,7 @@ Number Protocol .. index:: builtin: long - Returns the *o* converted to a long integer object on success, or *NULL* on + Returns the *o* converted to an integer object on success, or *NULL* on failure. This is the equivalent of the Python expression ``long(o)``. |