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: "Defining new types" little outdated
Type: Stage:
Components: Documentation Versions: Python 3.0, Python 3.1
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: georg.brandl Nosy List: exe, georg.brandl
Priority: normal Keywords:

Created on 2008-12-07 13:08 by exe, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Messages (2)
msg77225 - (view) Author: Kandalintsev Alexandre (exe) Date: 2008-12-07 13:08
Hello!

It's need to little update "Defining new types" documentation section 
in py3.0 and py3.1:
- self->ob_type->tp_free((PyObject*)self);
+ Py_TYPE(self)->tp_free((PyObject *)self);
msg77227 - (view) Author: Georg Brandl (georg.brandl) * (Python committer) Date: 2008-12-07 14:09
Fixed in r67632.
History
Date User Action Args
2022-04-11 14:56:42adminsetgithub: 48826
2008-12-07 14:09:34georg.brandlsetstatus: open -> closed
resolution: fixed
messages: + msg77227
2008-12-07 13:08:56execreate