Martin Blais added the comment:

Adding information that tells developers where the memory for those returned 
areas is stored and as you mention, its lifetime guarantees w.r.t. to the 
Python object, would go a long way towards making this more clear. The 
questions that immediately came to my mind were:

- Is this memory attached to the object?

- What if there is a conversion... is it still attached to the object? The 
converter for "s" says "Unicode objects are converted to C strings using 
'utf-8' encoding."  Where is the output of this conversion stored? Does it have 
the same lifetime as its PyObject as well or does it use a cache of recent 
conversions (e.g. like re/struct), or just static storage? And if so, is it 
thread-safe?

I can find all these answers by looking at the source code for C/Python, or I 
can _guess_ that extra data is attached to some sort of 'extra' field in a 
PyObject (which would be a sensible thing to do), but my point is that an API 
user shouldn't have to dig in the source or have to guess for such important 
concerns. I think we should be a bit more transparent in the docs.

----------

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

Reply via email to