This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: Minor error in document of PyLong_AsSsize_t
Type: Stage:
Components: Documentation Versions: Python 3.0, Python 3.1, Python 2.7
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: georg.brandl Nosy List: bhy, georg.brandl
Priority: normal Keywords:

Created on 2009-03-26 11:28 by bhy, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Messages (2)
msg84178 - (view) Author: Haoyu Bai (bhy) Date: 2009-03-26 11:28
In 2.6 and 2.7 development document, PyLong_AsSsize_t is said "New in
version 2.5". It is not correct because I checked Python 2.5.4 and
there's only _PyLong_AsSsize_t(). You can check it here:
http://docs.python.org/dev/c-api/long.html#PyLong_AsSsize_t

In 3.0 and 3.1 development document, PyLong_AsSsize_t is appeared twice,
there must be one duplicated. Check it here:
http://docs.python.org/dev/py3k/c-api/long.html#PyLong_AsSsize_t

Thanks!
msg84808 - (view) Author: Georg Brandl (georg.brandl) * (Python committer) Date: 2009-03-31 15:49
Fixed first issue in r70825.
Fixed second issue in r70827.
History
Date User Action Args
2022-04-11 14:56:46adminsetgithub: 49816
2009-03-31 15:49:09georg.brandlsetstatus: open -> closed
resolution: fixed
messages: + msg84808
2009-03-26 11:28:01bhycreate