[New-bugs-announce] [issue9844] calling nonexisting function under __INSURE__

Eli Bendersky report at bugs.python.org
Mon Sep 13 08:19:28 CEST 2010


New submission from Eli Bendersky <eliben at gmail.com>:

The Py_Main function has a section under #ifdef __INSURE__ at the end, where it does:

    _Py_ReleaseInternedStrings();
    _Py_ReleaseInternedUnicodeStrings();

The first function doesn't exist in Python 3K, so there will be a compile error with __INSURE__ defined.

----------
components: Interpreter Core
messages: 116281
nosy: eli.bendersky
priority: normal
severity: normal
status: open
title: calling nonexisting function under __INSURE__
type: compile error
versions: Python 3.1, Python 3.2, Python 3.3

_______________________________________
Python tracker <report at bugs.python.org>
<http://bugs.python.org/issue9844>
_______________________________________


More information about the New-bugs-announce mailing list