STINNER Victor added the comment:

Could you please add unit tests for check that ob_start is used instead of 
memmove()?

I didn't find a function for that in _testcapi. I tried to test it using 
sys.getsizeof(), but the size is not reliable (the bytearray buffer is not 
always shrinked, it depends on the new size).

The best is probably to add a new function in _testcapi to get private 
attributes: ob_exports, ob_alloc, ob_start, ob_bytes. Using these attributes, 
it becomes easy to check that fast-path are correctly optimized (eg. increases 
ob_start instead of getting a new ob_bytes buffer).

----------

_______________________________________
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue19087>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to