[issue3070] Wrong size calculation in posix_execve

2010-07-10 Thread STINNER Victor
STINNER Victor added the comment: Yes, I fixed it in 3.1 (r80494) and 3.2 (r80421): see issue #8391. -- resolution: -> fixed status: open -> closed ___ Python tracker ___ __

[issue3070] Wrong size calculation in posix_execve

2010-07-10 Thread Mark Lawrence
Mark Lawrence added the comment: Any core C developers have any input on this one? -- nosy: +BreamoreBoy versions: +Python 3.2 ___ Python tracker ___

[issue3070] Wrong size calculation in posix_execve

2009-05-13 Thread Daniel Diniz
Changes by Daniel Diniz : -- nosy: +haypo, loewis priority: -> normal stage: -> test needed type: -> behavior versions: +Python 3.1 -Python 3.0 ___ Python tracker ___ _

[issue3070] Wrong size calculation in posix_execve

2008-06-09 Thread Adam Olsen
New submission from Adam Olsen <[EMAIL PROTECTED]>: In 2.x, the size of C string needed for an environment variable used by posix_execve was calculated using PyString_GetSize. In 3.0 this is translated to PyUnicode_GetSize. However, in 3.0 the C string is the UTF-8 encoded version of the unicod