[issue15913] PyBuffer_SizeFromFormat is missing

2019-06-06 Thread Joannah Nanjekye
Change by Joannah Nanjekye : -- keywords: +patch pull_requests: +13751 stage: needs patch -> patch review pull_request: https://github.com/python/cpython/pull/13873 ___ Python tracker

[issue15913] PyBuffer_SizeFromFormat is missing

2016-05-19 Thread Berker Peksag
Changes by Berker Peksag : -- stage: -> needs patch versions: +Python 3.6 -Python 3.4 ___ Python tracker ___ ___ Python-bugs-list mai

[issue15913] PyBuffer_SizeFromFormat is missing

2014-10-14 Thread Stefan Krah
Changes by Stefan Krah : -- nosy: -skrah ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python.o

[issue15913] PyBuffer_SizeFromFormat is missing

2012-09-11 Thread Stefan Krah
Stefan Krah added the comment: Even though it's documented, the function is probably a new feature and should go into 3.4. Meanwhile, you can call struct.calcsize(format). Any non-trivial implementation of PyBuffer_SizeFromFormat() would likely do the same. -- components: +Interpreter C

[issue15913] PyBuffer_SizeFromFormat is missing

2012-09-10 Thread Ellery Newcomer
New submission from Ellery Newcomer: this function is listed in the buffer docs and in abstract.h, but there is no implementation anywhere. -- components: None messages: 170239 nosy: ellery.newcomer priority: normal severity: normal status: open title: PyBuffer_SizeFromFormat is missing