Serhiy Storchaka <storchaka+cpyt...@gmail.com> added the comment:

If you need to support only bytes and bytearray, but not other bytes-like 
object, this is a too special case. It is easy to write your own macros or 
functions that wrap existing C API. Other option -- duplicate the code and 
replace PyBytes_ with PyByteArray_. In all cases be aware abot differences 
between bytes and bytearray: bytarray can change its content and size, saved 
values of PyByteArray_AS_STRING(ob) and PyByteArray_GET_SIZE(self) can not be 
used after executing arbitrary code in destructors or releasing GIT.

----------
resolution:  -> rejected
stage:  -> resolved
status: open -> closed

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

Reply via email to