[issue11430] can't change the sizeof a Structure that doesn't own its buffer

2019-03-15 Thread Mark Lawrence
Change by Mark Lawrence : -- nosy: -BreamoreBoy ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue11430] can't change the sizeof a Structure that doesn't own its buffer

2014-06-17 Thread Mark Lawrence
Mark Lawrence added the comment: Your opinions please folks. -- nosy: +BreamoreBoy, amaury.forgeotdarc, belopolsky, meador.inge versions: +Python 3.5 -Python 3.2 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue11430

[issue11430] can't change the sizeof a Structure that doesn't own its buffer

2011-03-07 Thread benrg
New submission from benrg benrud...@gmail.com: A struct that is resized knows its new size; among other things, the new size is returned by sizeof. But it seems to be impossible to increase the size of a struct that doesn't own its buffer. resize fails in this case. This would not be too bad