Antoine Pitrou <pit...@free.fr> added the comment:

The patch looks wrong for bytearrays. They are mutable, so you shouldn't return 
the original object as an optimization. Here is the current (unpatched) 
behaviour:

>>> a = bytearray(b"abc")
>>> b, = a.split()
>>> b is a
False

On the other hand, you aren't doing this optimization at all in the general 
case of stringlib_split() and stringlib_rsplit(), while it could be done.

----------

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

Reply via email to