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.
Created on 2007年06月01日 23:51 by bwelling, last changed 2022年04月11日 14:56 by admin. This issue is now closed.
| Messages (4) | |||
|---|---|---|---|
| msg32175 - (view) | Author: Brian Wellington (bwelling) | Date: 2007年06月01日 23:51 | |
The "Parsing arguments and building values" section of the Python/C API Reference Manual describes the "s#" format unit as requiring a [const char *, int]. This should presumably be a Py_ssize_t, as that's what the code appears to expect. The same problem also occurs elsewhere in this page; pretty much everywhere the # format modifier is described. I'm seeing this in both the 2.5.1 and development versions of the docs on docs.python.org. |
|||
| msg32176 - (view) | Author: Martin v. Löwis (loewis) * (Python committer) | Date: 2007年06月02日 07:27 | |
It's more complicated than that, see PEP 353: It's Py_ssize_t if the module defines PY_SSIZE_T_CLEAN, else it's int. Would you like to work on a patch fixing the documentation? |
|||
| msg86449 - (view) | Author: Jeroen Ruigrok van der Werven (asmodai) * (Python committer) | Date: 2009年04月25日 10:16 | |
This seems to be present in c-api/arg.rst in trunk already. Candidate for closure after verifying it's been merged appropriately? |
|||
| msg86477 - (view) | Author: Martin v. Löwis (loewis) * (Python committer) | Date: 2009年04月25日 11:39 | |
Closing as suggested |
|||
| History | |||
|---|---|---|---|
| Date | User | Action | Args |
| 2022年04月11日 14:56:24 | admin | set | github: 45023 |
| 2009年04月25日 11:39:46 | loewis | set | status: open -> closed resolution: fixed messages: + msg86477 |
| 2009年04月25日 10:16:41 | asmodai | set | nosy:
+ asmodai messages: + msg86449 |
| 2009年01月18日 13:26:39 | georg.brandl | set | priority: normal -> high assignee: georg.brandl title: missing int->Py_ssize_t in documentation -> Document effects of PY_SSIZE_T_CLEAN on argument parsing nosy: + georg.brandl |
| 2009年01月18日 13:26:28 | georg.brandl | link | issue4980 superseder |
| 2007年06月01日 23:51:25 | bwelling | create | |