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: PyMemberDef type T_UBYTE incorrectly documtented
Type: behavior Stage:
Components: Documentation Versions: Python 3.0, Python 3.1, Python 2.7, Python 2.6
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: georg.brandl Nosy List: brian.curtin, georg.brandl
Priority: normal Keywords: patch

Created on 2009-03-31 03:36 by brian.curtin, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
structures_2x.patch brian.curtin, 2009-03-31 03:35 Patch for 2x (trunk and release26-maint)
structures_3x.patch brian.curtin, 2009-03-31 03:37 Patch for 3x (release30-maint and py3k)
Messages (3)
msg84747 - (view) Author: Brian Curtin (brian.curtin) * (Python committer) Date: 2009-03-31 03:35
One of the available options for the type field in the PyMemberDef
structure is incorrectly listed as T_UNBYTE. T_UBYTE is the correct type.

See http://docs.python.org/c-api/structures.html#PyMemberDef
msg84748 - (view) Author: Brian Curtin (brian.curtin) * (Python committer) Date: 2009-03-31 03:37
Adding 3x patch
msg84876 - (view) Author: Georg Brandl (georg.brandl) * (Python committer) Date: 2009-03-31 19:31
Fixed in r70871.
History
Date User Action Args
2022-04-11 14:56:47adminsetgithub: 49868
2009-03-31 19:31:12georg.brandlsetstatus: open -> closed
resolution: fixed
messages: + msg84876
2009-03-31 03:37:36brian.curtinsetfiles: + structures_3x.patch

messages: + msg84748
2009-03-31 03:36:00brian.curtincreate