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: Document size_t related long object APIs
Type: enhancement Stage:
Components: Documentation Versions: Python 3.0, Python 2.6
process
Status: closed Resolution: accepted
Dependencies: Superseder:
Assigned To: georg.brandl Nosy List: belopolsky, georg.brandl
Priority: normal Keywords: patch

Created on 2008-04-25 16:03 by belopolsky, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
doc-long.diff belopolsky, 2008-04-25 16:10
Messages (5)
msg65788 - (view) Author: Alexander Belopolsky (belopolsky) * (Python committer) Date: 2008-04-25 16:03
Attached patch adds documentation for the new in 2.5 APIs:

PyObject* PyLong_FromSsize_t(Py_ssize_t v)
PyObject* PyLong_FromSize_t(size_t v)

and

Py_ssize_t PyLong_AsSsize_t(PyObject *pylong)
msg65789 - (view) Author: Alexander Belopolsky (belopolsky) * (Python committer) Date: 2008-04-25 16:04
-
msg65790 - (view) Author: Alexander Belopolsky (belopolsky) * (Python committer) Date: 2008-04-25 16:08
For some reason the tracker web interface fails to upload the patch.  
Trying again with this message, if it fails again, will resubmit by e-
mail.
msg65791 - (view) Author: Alexander Belopolsky (belopolsky) * (Python committer) Date: 2008-04-25 16:10
Web submission did not work.  Trying sending the patch as an e-mail attachment.
msg65852 - (view) Author: Georg Brandl (georg.brandl) * (Python committer) Date: 2008-04-26 18:32
Thanks, committed as r62513.
History
Date User Action Args
2022-04-11 14:56:33adminsetgithub: 46943
2008-04-26 18:32:21georg.brandlsetstatus: open -> closed
resolution: accepted
messages: + msg65852
2008-04-25 21:32:12benjamin.petersonsettype: enhancement
versions: - Python 2.5
2008-04-25 16:10:39belopolskysetfiles: + doc-long.diff
keywords: + patch
messages: + msg65791
2008-04-25 16:08:17belopolskysetmessages: + msg65790
2008-04-25 16:04:36belopolskysetmessages: + msg65789
2008-04-25 16:03:08belopolskycreate