[issue1428655] Use PyOS_snprintf for static buffers

2010-07-19 Thread Mark Lawrence
Mark Lawrence added the comment: Closing as noone has responded. -- resolution: -> wont fix status: pending -> closed ___ Python tracker ___ _

[issue1428655] Use PyOS_snprintf for static buffers

2010-07-16 Thread Mark Lawrence
Mark Lawrence added the comment: I'll close unless someone puts in a strong bid to keep this open. -- status: open -> pending ___ Python tracker ___ __

[issue1428655] Use PyOS_snprintf for static buffers

2010-07-16 Thread Amaury Forgeot d'Arc
Amaury Forgeot d'Arc added the comment: Most usages of sprintf here cannot cause buffer overruns: the output is bounded in size (%d, %8.8x, %.200s), and the buffer is large enough. Moreover, some of them were already replaced by functions of the _FromFormat() family, which can handle unicode

[issue1428655] Use PyOS_snprintf for static buffers

2010-07-16 Thread Mark Lawrence
Mark Lawrence added the comment: I'm torn by this one. Half of me says it's a good thing trying to be fail safe. The other half says it's work for something that hasn't yet happened. Any other views? -- nosy: +BreamoreBoy type: -> feature request versions: -Python 2.6, Python 2.7

[issue1428655] Use PyOS_snprintf for static buffers

2009-05-13 Thread Daniel Diniz
Daniel Diniz added the comment: Does anyone want to adopt this one? :) -- nosy: +ajaksu2 stage: -> patch review versions: +Python 2.7, Python 3.1, Python 3.2 -Python 2.5 ___ Python tracker _

[issue1428655] Use PyOS_snprintf for static buffers

2008-01-05 Thread Christian Heimes
Changes by Christian Heimes: -- versions: +Python 2.5, Python 2.6 _ Tracker <[EMAIL PROTECTED]> _ ___ Python-bugs-list mailing list