[New-bugs-announce] [issue20595] C89 compliance issue in Python/getargs.c

Jeffrey Armstrong report at bugs.python.org
Tue Feb 11 13:40:10 CET 2014


New submission from Jeffrey Armstrong:

The file Python/getargs.c currently uses an array initializer with a runtime variable, causing compile errors on strict C89 compilers.  The variables named freelist in vgetargs1() and vgetargskeywords() both use non-constant initializers.  The attached patch should correct the issue for the default branch.

----------
components: Interpreter Core
files: getargs.c.default.patch
keywords: patch
messages: 210933
nosy: Jeffrey.Armstrong
priority: normal
severity: normal
status: open
title: C89 compliance issue in Python/getargs.c
type: compile error
versions: Python 3.4
Added file: http://bugs.python.org/file34037/getargs.c.default.patch

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


More information about the New-bugs-announce mailing list