[Python-Dev] test_builtin failing? or just 64-bit platforms (original) (raw)

Jeremy Hylton jeremy@zope.com
Sat, 1 Dec 2001 12:02:54 -0500 (EST)


The uses of PyOS_snprintf() in sysmodule.c actually checks the return value. It always checked the sprintf() returned value and triggered a Py_FatalError() if the return value was too big. I changed it to print a warning message that the output was truncated.

Jeremy