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.

Author rolland
Recipients belopolsky, christian.heimes, rolland
Date 2008-03-27.13:05:27
SpamBayes Score 0.22479293
Marked as misclassified No
Message-id <1206623128.69.0.14405724875.issue2443@psf.upfronthosting.co.za>
In-reply-to
Content
Actually, this thing is more complex to solve than I thought.
Specifically, as described in
http://www.opengroup.org/onlinepubs/007908775/xsh/stdarg.h.html stdarg
requires that variable argument functions have at least one fixed argument.
This is implied by the declaration of "void va_start(va_list ap, argN);".
As explained in the original ticket description, and also described
before in the above link, va_start() must be called before any call to
va_arg(), and this includes any access to the argument list using
__va_copy namely.

The problem is that at least objargs_mktuple(), line 2649 of
Objects/abstract.c does not have a first fixed argument.
History
Date User Action Args
2008-03-27 13:05:28rollandsetspambayes_score: 0.224793 -> 0.22479293
recipients: + rolland, belopolsky, christian.heimes
2008-03-27 13:05:28rollandsetspambayes_score: 0.224793 -> 0.224793
messageid: <1206623128.69.0.14405724875.issue2443@psf.upfronthosting.co.za>
2008-03-27 13:05:27rollandlinkissue2443 messages
2008-03-27 13:05:27rollandcreate