[XML-SIG] Python versions supported by PyXML?

Martin v. Loewis martin@v.loewis.de
16 Feb 2002 13:31:21 +0100


"M.-A. Lemburg" <mal@lemburg.com> writes:

> Why not make PyOS_snprintf() a macro pointing to snprintf()
> or even sprintf() for older Python versions ?

It is a macro for snprintf, but Fred thinks this is a hack, and I agree.
Making it a macro for sprintf would be even more of a hack.

I don't see the rationale for using snprintf in the single place that
uses it, and I think it makes the code clearer if the change to use
PyOS_snprintf is reverted.

Regards,
Martin