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: type_modified() in typeobject.c should be public
Type: enhancement Stage:
Components: Interpreter Core Versions: Python 3.0, Python 2.6
process
Status: closed Resolution: accepted
Dependencies: Superseder:
Assigned To: Nosy List: georg.brandl, scoder
Priority: normal Keywords: patch

Created on 2008-05-28 10:52 by scoder, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
pytype_modified.patch scoder, 2008-05-28 10:52 Patch that renames type_modified() to PyType_Modified() and makes it public
Messages (2)
msg67444 - (view) Author: Stefan Behnel (scoder) * (Python committer) Date: 2008-05-28 10:52
Here is a patch that makes this function public. This allows C code to
correctly taint a type after updating its attributes or base classes.
msg67446 - (view) Author: Georg Brandl (georg.brandl) * (Python committer) Date: 2008-05-28 11:21
Committed r63757.
History
Date User Action Args
2022-04-11 14:56:35adminsetgithub: 47238
2008-05-28 11:21:53georg.brandlsetstatus: open -> closed
resolution: accepted
messages: + msg67446
nosy: + georg.brandl
2008-05-28 10:52:37scodercreate