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: RO (shorthand for READONLY) gone, not in documentation
Type: compile error Stage:
Components: Documentation Versions: Python 3.0
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: georg.brandl Nosy List: Rémi, georg.brandl
Priority: normal Keywords:

Created on 2009-02-24 19:08 by Rémi, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Messages (3)
msg82670 - (view) Author: Rémi Koenig (Rémi) Date: 2009-02-24 19:08
The Defining New Types document for python3
(http://docs.python.org/3.0/extending/newtypes.html) cites the RO macro
(which existed in versions < 3). However, it has been removed in py3k
(cf http://wiki.python.org/moin/Py3kExtensionModules or
python3.0/structmember.h).
msg82672 - (view) Author: Rémi Koenig (Rémi) Date: 2009-02-24 19:23
Sorry to bother, but I just noticed that in this same document
(http://docs.python.org/3.0/extending/newtypes.html),
PyObject_HEAD_INIT(NULL) has not been replaced by
PyVarObject_HEAD_INIT(NULL, 0).
msg82847 - (view) Author: Georg Brandl (georg.brandl) * (Python committer) Date: 2009-02-27 17:11
Removed RO in r70027. Fixed HEAD_INIT stuff in r70028.
History
Date User Action Args
2022-04-11 14:56:46adminsetgithub: 49610
2009-02-27 17:11:33georg.brandlsetstatus: open -> closed
resolution: fixed
messages: + msg82847
2009-02-24 19:23:36Rémisetmessages: + msg82672
2009-02-24 19:08:21Rémicreate